0% found this document useful (0 votes)
87 views

nosql-databases

NoSQL databases are designed for flexible, scalable, and high-performance data storage, handling large volumes of unstructured data efficiently. They differ from SQL databases by allowing schema flexibility, horizontal scaling, and high availability, making them suitable for modern applications like big data and real-time analytics. Key types of NoSQL databases include key-value stores, document databases, column-family stores, and graph databases, each serving specific use cases.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
87 views

nosql-databases

NoSQL databases are designed for flexible, scalable, and high-performance data storage, handling large volumes of unstructured data efficiently. They differ from SQL databases by allowing schema flexibility, horizontal scaling, and high availability, making them suitable for modern applications like big data and real-time analytics. Key types of NoSQL databases include key-value stores, document databases, column-family stores, and graph databases, each serving specific use cases.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 379

nosql-databases

May 6, 2025

0.1 1. Introduction to NoSQL Databases


0.1.1 What is NoSQL?
NoSQL (Not Only SQL) databases are designed to handle large-scale, high-performance, and
flexible data storage needs.
Unlike SQL databases that use structured tables, NoSQL databases store data in key-value pairs,
documents, graphs, or wide-columns.
Why NoSQL?
- Handles big data efficiently
- Supports flexible schemas
- Designed for high scalability (horizontal scaling)
- Provides high availability and fault tolerance

0.2 2. Motivation for NoSQL Databases


0.2.1 a). Scalability Issues in SQL Databases
• Vertical Scaling (Scale-Up): Adding more CPU/RAM to a single server
• Horizontal Scaling (Scale-Out): Distributing data across multiple machines

• SQL databases mainly scale vertically, while NoSQL databases scale horizontally.
NoSQL is better suited for distributed and cloud-based applications.

0.2.2 b). The Growth of Big Data


Modern applications generate huge amounts of unstructured data from: - Social media posts
(Twitter, Instagram)
- IoT sensor data
- E-commerce transactions
SQL databases struggle with storing and processing diverse data, while NoSQL databases
efficiently handle high-volume, real-time data.

1
0.2.3 c). Flexible Schema Requirements
• SQL databases require predefined schemas
• NoSQL databases allow schema flexibility
Example:
- SQL: Alter table to add a new column
- NoSQL: Simply insert a new document with additional fields

0.2.4 d). High Availability and Fault Tolerance


• SQL databases are centralized → Single point of failure

• NoSQL databases distribute data across multiple nodes → Fault-tolerant


Example:
- Amazon DynamoDB, Apache Cassandra replicate data across multiple servers to avoid
downtime.

0.3 3. Differences Between SQL and NoSQL

Feature SQL (Relational Databases) NoSQL (Non-Relational Databases)


Data Model Tables (rows & columns) Key-Value, Document, Column, Graph
Schema Fixed schema Flexible (Schema-less)
Scaling Vertical Scaling Horizontal Scaling
Consistency Strong Consistency (ACID) Eventual Consistency (CAP theorem)
Query Language SQL (Structured Query Language) No standard query language
Performance Optimized for complex queries Optimized for fast reads/writes
Use Cases Banking, ERP, CRM Big Data, Real-time analytics, IoT

0.4 4. Types of NoSQL Databases


0.4.1 a). Key-Value Stores
Stores data as a key-value pair, similar to a dictionary.
Use Cases:
- Caching (Redis)
- User sessions (DynamoDB)
Popular Databases:
- Redis
- Amazon DynamoDB
- Riak

2
0.4.2 b). Document Databases
Stores data as JSON/BSON documents, allowing nested and flexible structures.
Use Cases:
- Content Management (MongoDB)
- Real-time apps (Firebase)
Popular Databases:
- MongoDB
- CouchDB
- Firebase Firestore

0.4.3 c). Column-Family Stores


Stores data in columns rather than rows, optimized for fast retrieval.
Use Cases:
- Time-series data (Cassandra)
- Big Data Analytics (HBase)
Popular Databases:
- Apache Cassandra
- HBase
- ScyllaDB

0.4.4 d). Graph Databases


Uses nodes and edges to store relationships between data.
Use Cases:
- Social networks (Neo4j)
- Fraud detection (Amazon Neptune)
Popular Databases:
- Neo4j
- Amazon Neptune
- ArangoDB

0.4.5 Key Takeaways


• NoSQL databases are designed for Big Data and real-time applications.

• They support scalability, schema flexibility, and high availability.


-Four major types: Key-Value, Document, Column-Family, Graph.

3
0.5 1. Introduction to Distributed Systems
0.5.1 What is a Distributed System?
A distributed system is a network of computers that work together to achieve a common goal.
These computers communicate and coordinate their actions by passing messages.
Key Characteristics of Distributed Systems
- Scalability: Can handle growing workloads efficiently.
- Fault Tolerance: Continues operating even when some components fail.
- Decentralization: No single point of failure.
- Concurrency: Multiple components operate simultaneously.

0.6 2. Horizontal Scaling vs. Vertical Scaling


0.6.1 a). Vertical Scaling (Scaling Up)
Increasing the capacity of a single server by adding more CPU, RAM, or disk space. - Pros:
Easier to implement, simpler architecture. - Cons: Expensive, hardware limitations, downtime
needed for upgrades. Example: Upgrading a database server from 16GB RAM to 128GB
RAM.

0.6.2 b). Horizontal Scaling (Scaling Out)


Adding more machines (nodes) to distribute the workload. - Pros: No hardware limit,
better fault tolerance, cost-effective. - Cons: More complex architecture, requires distributed
databases. Example:* Adding multiple MongoDB nodes** to handle millions of users.
When to Use Horizontal Scaling? - Cloud-based applications (AWS, Google Cloud)
- NoSQL databases (MongoDB, Cassandra)
- Large-scale web apps (Facebook, Netflix)

0.7 3. Replication: Ensuring Data Availability


Replication is the process of copying and storing data across multiple servers to improve
availability, reliability, and performance.

0.7.1 Types of Replication

Type Description Example


Master-Slave One master writes, slaves read & MySQL, MongoDB
Replication replicate
Master-Master Multiple masters handle reads/writes PostgreSQL, CouchDB
Replication
Peer-to-Peer All nodes act as equal peers Apache Cassandra
Replication

4
Example: - Facebook: Replicates data across multiple data centers worldwide. - Amazon
DynamoDB: Uses multi-region replication for global availability.

0.7.2 Replication Challenges


• Data inconsistency (Replication Lag)

• Increased storage costs


• Network overhead

0.8 4. Fault Tolerance: Keeping Systems Running


Fault Tolerance ensures a system keeps running even when failures occur.

0.8.1 a). Redundancy �


• Having backup servers prevents total failure.
• Used in distributed file systems (HDFS, Google File System).

0.8.2 b). Failover Mechanisms �


• If one server fails, another takes over automatically.
• Used in cloud computing, databases (AWS Auto Scaling).

0.8.3 c). Load Balancing �


• Distributes traffic across multiple servers.
• Tools: NGINX, HAProxy, AWS Load Balancer.
Example: - Netflix: Uses global replication and auto-failover to ensure zero downtime.
- Google Search: Uses multiple data centers worldwide to distribute traffic.

0.9 5. CAP Theorem: The Foundation of Distributed Databases


0.9.1 What is the CAP Theorem?
The CAP theorem states that a distributed system can provide only two out of the following
three properties:

Property Description Example


Consistency (C) All nodes see the same data at the SQL Databases
same time
Availability (A) The system remains operational at Amazon DynamoDB
all times
Partition Tolerance (P) The system continues working NoSQL Databases
despite network failures

5
0.9.2 CAP Theorem Trade-offs
• CP (Consistency + Partition Tolerance) → Prioritizes data accuracy, might have
downtime.

• AP (Availability + Partition Tolerance) → Prioritizes availability, might have stale


data.

• CA (Consistency + Availability) → Impossible in a distributed system!


Example: - Banking System (CP): Transactions must be consistent, even at the cost of
availability.
- E-commerce Website (AP): Products should always be available, even if some data is outdated.

0.10 6. Advanced Concepts in Distributed Systems


0.10.1 a. Distributed Consensus: How Nodes Agree
• Ensures all nodes agree on a single version of the truth.
• Essential for blockchains, leader elections, transactions.
Popular Consensus Algorithms:

Algorithm Description Used in


Paxos Highly reliable but complex Google Spanner
Raft Simpler and widely used Kubernetes, Etcd
Byzantine Fault Tolerance Works even with malicious nodes Blockchain (Bitcoin,
(BFT) Ethereum)

0.10.2 b. Distributed Transactions


• Ensures data consistency across multiple nodes.
• Uses the Two-Phase Commit (2PC) or Three-Phase Commit (3PC) protocols.
Example:
- Online Payments: Deducting money from an account must happen with adding money to the
seller’s account.

0.10.3 c. Eventual Consistency


• Guarantees that all nodes will have the same data eventually.
• Used in AP systems (e.g., Amazon DynamoDB, Cassandra).
Example:
- Twitter Timeline: You might see a new tweet slightly later than someone else.

6
0.10.4 d. Sharding: Distributing Data Efficiently
• Splitting large databases into smaller, faster pieces.
• Each shard handles a subset of data.
Example:
- MongoDB automatically shards collections for large-scale data handling.

0.11 Key Takeaway


• Horizontal Scaling is key for distributed systems.

• Replication ensures high availability but can cause inconsistencies.

• Fault Tolerance is critical for reliable systems.

• CAP Theorem defines trade-offs in database design.

• Distributed Consensus & Transactions help maintain consistency.

0.12 1. Introduction to MongoDB


• MongoDB is a NoSQL document database known for scalability, flexibility, and high
performance.

• First released in 2009, it has become a leading choice for modern applications.

• The name Mongo comes from “humongous,” emphasizing its ability to handle large-scale
data.

0.13 2. Key Features of MongoDB


• Document-Oriented – Stores data in JSON-like BSON format.

• Schema-less – Allows flexible data structures with varying fields in documents.

• Scalable & High Performance – Uses sharding for distributing data across multiple
servers.

• Ad Hoc Queries – Supports dynamic queries on nested data.

• Replication & High Availability – Ensures fault tolerance with replica sets.

0.14 3. Why Use MongoDB?


• Versatility & Ease of Use – Can handle both small and large datasets efficiently.

7
• Performance-Oriented – Optimized for fast reads/writes with indexing and in-memory
storage.

• No Schema Restrictions – Unlike relational databases, MongoDB allows dynamic fields.

0.15 4. MongoDB in Real-World Applications


• Foursquare – Uses MongoDB for location-based services.

• bit.ly – Manages URL shortening with MongoDB.

• CERN – Stores Large Hadron Collider (LHC) data.

1 a). Hu(mongo)us
MongoDB finds a balance between powerful queryability (like relational databases) and scala-
bility (like distributed databases such as Riak or HBase).
Project founder Dwight Merriman created MongoDB as the database he wished he had at
DoubleClick, where he needed to store large-scale data while still allowing ad hoc queries.
MongoDB is a JSON document database (technically, it uses BSON – a binary form of JSON).
A MongoDB document is similar to a relational table row, but it has no fixed schema and
can store nested values of any depth.
[ ]: !pip install pymongo[srv]

Requirement already satisfied: pymongo[srv] in /usr/local/lib/python3.11/dist-


packages (4.11.3)
WARNING: pymongo 4.11.3 does not provide the extra 'srv'
Requirement already satisfied: dnspython<3.0.0,>=1.16.0 in
/usr/local/lib/python3.11/dist-packages (from pymongo[srv]) (2.7.0)

[ ]: from pymongo import MongoClient


from bson.objectid import ObjectId
from datetime import datetime

# MongoDB connection (Ensure you replace <password> with your actual password)
MONGO_URI = "mongodb+srv://mutubaseth:Kibakivio%[email protected]/
↪?retryWrites=true&w=majority"

# Connect to MongoDB Atlas


client = MongoClient(MONGO_URI)
db = client["world_data"] # Create or select the database
collection = db["cities"] # Create or select the collection

# Sample JSON-like MongoDB document (nested structure)


city_document = {

8
"name": "Portland",
"state": "OR",
"population": 582000,
"last_census": datetime(2007, 9, 20),
"famous_for": ["beer", "food"],
"mayor": {
"name": "Sam Adams",
"party": "D"
},
"country": {
"$ref": "countries",
"$id": ObjectId() # Simulating a reference to another collection
}
}

# Insert the document into MongoDB


inserted_id = collection.insert_one(city_document).inserted_id
print(f" Document inserted with ID: {inserted_id}")

# Retrieve and print the inserted document


retrieved_doc = collection.find_one({"_id": inserted_id})
print("\n Retrieved Document:")
print(retrieved_doc)

Document inserted with ID: 67ebbfea45a3f2afd5e16be9

Retrieved Document:
{'_id': ObjectId('67ebbfea45a3f2afd5e16be9'), 'name': 'Portland', 'state': 'OR',
'population': 582000, 'last_census': datetime.datetime(2007, 9, 20, 0, 0),
'famous_for': ['beer', 'food'], 'mayor': {'name': 'Sam Adams', 'party': 'D'},
'country': DBRef('countries', ObjectId('67ebbfea45a3f2afd5e16be8'))}
• A city document (Portland) was successfully inserted into MongoDB.
• The document includes name, state, population, last census date, famous aspects,
and mayor details.
• It also contains a DBRef linking to a country document in another collection.
• The document was retrieved successfully, confirming MongoDB’s ability to store and query
structured data.

2 b). CRUD and Nesting in MongoDB


2.1 i).Create (Insert Data)
MongoDB stores data as documents in collections. We use insert_one() to insert a single docu-
ment and insert_many() to insert multiple documents into a collection.
Each document is stored in BSON format (a binary representation of JSON) and can contain
various data types, including strings, numbers, arrays, and nested documents.

9
2.1.1 Example: Insert a city document into the “cities” collection
A city document typically includes fields such as:
- name: The name of the city (e.g., “New York”).
- country: The country where the city is located (e.g., “USA”).
- population: The total number of residents in the city.
- coordinates: A nested document containing latitude (lat) and longitude (long).
MongoDB allows nesting within documents, meaning fields like coordinates can be structured as
a sub-document inside the main city document.
[ ]: city_data = {
"name": "New York",
"country": "USA",
"population": 8419600,
"coordinates": {"lat": 40.7128, "long": -74.0060}
}

insert_result = collection.insert_one(city_data)
print(f" Document inserted with ID: {insert_result.inserted_id}")

Document inserted with ID: 67ebbfec45a3f2afd5e16bea

2.1.2 BSON vs JSON


MongoDB stores data in BSON (Binary JSON), which extends JSON to support additional data
types like:
- ObjectId (a unique identifier for documents)
- Date (stores dates efficiently)
- Binary Data (allows storage of binary files)
BSON enables faster data retrieval and storage compared to plain JSON, making it more efficient
for handling large datasets.

2.1.3 Insert Multiple Documents (insert_many())


In addition to insert_one(), MongoDB allows inserting multiple documents at once using
insert_many(). This method improves efficiency when adding bulk data.
[ ]: cities_data = [
{"name": "Los Angeles", "country": "USA", "population": 3970000,␣
↪"coordinates": {"lat": 34.0522, "long": -118.2437}},

{"name": "Chicago", "country": "USA", "population": 2716000, "coordinates":␣


↪{"lat": 41.8781, "long": -87.6298}}

]
insert_result = collection.insert_many(cities_data)
print(f" Documents inserted with IDs: {insert_result.inserted_ids}")

Documents inserted with IDs: [ObjectId('67ebbfec45a3f2afd5e16beb'),


ObjectId('67ebbfec45a3f2afd5e16bec')]

10
2.2 ii). Read (Retrieve Data)
To query data, we use the following methods:
• find_one(): Retrieves a single document that matches the query criteria. If multiple
documents match, only the first one found is returned.

• find(): Retrieves multiple documents that match the query criteria. This method returns a
cursor, which can be iterated over to access multiple results.
MongoDB queries can filter documents based on specific field values, comparison operators (e.g.,
$gt, $lt, $eq), or logical conditions (e.g., $and, $or).
Example Use Cases:
- Retrieve a single city by name using find_one().
- Retrieve all cities in a specific country using find().
- Apply filters to retrieve documents that meet certain conditions, such as cities with a population
greater than a specified number.
[ ]: retrieved_city = collection.find_one({"name": "New York"})
print("Retrieved Document:", retrieved_city)

Retrieved Document: {'_id': ObjectId('67ebb15c45a3f2afd5e16bc2'), 'name': 'New


York', 'country': 'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128,
'long': -74.006}, 'deleted': True}

2.3 Cursor in find()


When using find(), MongoDB returns a cursor, which is an iterable object that allows efficient
traversal of multiple documents in a collection. Instead of returning all results at once, the cursor
fetches documents as needed, optimizing memory usage and performance.

2.3.1 Key Points About Cursors:


• A cursor is an iterator that holds query results from find().

• Use a for loop to iterate through the cursor and access documents one by one.

• To retrieve all documents at once, convert the cursor to a list using list(cursor), but this
is not recommended for large datasets as it consumes more memory.

• The cursor remains open until fully iterated or explicitly closed.

2.3.2 Example Use Cases:


• Iterating through all documents in a collection.

• Filtering and limiting results using query parameters and cursor methods like .limit() and
.sort().

11
[ ]: cursor = collection.find({"country": "USA"})
for document in cursor:
print(document) # Each document is printed separately

{'_id': ObjectId('67bd7bf919a1b6971a3315cf'), 'name': 'Los Angeles', 'country':


'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67bd7bf919a1b6971a3315d0'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67bd853919a1b6971a3315d5'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67bd853919a1b6971a3315d6'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67bd889f19a1b6971a3315e0'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67bd889f19a1b6971a3315e1'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67bda48519a1b6971a3315f0'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67bda48519a1b6971a3315f1'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67bde046bcedafe7ea2ecaa1'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67bde046bcedafe7ea2ecaa2'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67cf46e05e438f23594c17cf'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67cf46e05e438f23594c17ce'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eb9e61a242384525e8eb72'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eb9e61a242384525e8eb73'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eba22da242384525e8eb7c'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eba22da242384525e8eb7d'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eba3eca242384525e8eb87'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}

12
{'_id': ObjectId('67eba3eca242384525e8eb88'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eba4d145a3f2afd5e16b50'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eba4d145a3f2afd5e16b51'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eba71b45a3f2afd5e16b5b'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eba71b45a3f2afd5e16b5c'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eba82945a3f2afd5e16b66'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eba82945a3f2afd5e16b67'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eba92d45a3f2afd5e16b71'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eba92d45a3f2afd5e16b72'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebaa4c45a3f2afd5e16b7c'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebaa4c45a3f2afd5e16b7d'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebaabd45a3f2afd5e16b87'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebaabd45a3f2afd5e16b88'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebac4d45a3f2afd5e16b91'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebac4d45a3f2afd5e16b92'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebad9d45a3f2afd5e16b9b'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebad9d45a3f2afd5e16b9c'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebae0545a3f2afd5e16ba5'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebae0545a3f2afd5e16ba6'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebae9245a3f2afd5e16baf'), 'name': 'Los Angeles', 'country':

13
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebae9245a3f2afd5e16bb0'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebafc445a3f2afd5e16bb9'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebafc445a3f2afd5e16bba'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebb15c45a3f2afd5e16bc2'), 'name': 'New York', 'country':
'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006},
'deleted': True}
{'_id': ObjectId('67ebb15c45a3f2afd5e16bc3'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebb15c45a3f2afd5e16bc4'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebb22e45a3f2afd5e16bcc'), 'name': 'New York', 'country':
'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006}}
{'_id': ObjectId('67ebb22e45a3f2afd5e16bcd'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebb22e45a3f2afd5e16bce'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebb52845a3f2afd5e16bd6'), 'name': 'New York', 'country':
'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006}}
{'_id': ObjectId('67ebb52845a3f2afd5e16bd7'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebb52845a3f2afd5e16bd8'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebb65b45a3f2afd5e16be0'), 'name': 'New York', 'country':
'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006}}
{'_id': ObjectId('67ebb65b45a3f2afd5e16be1'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebb65b45a3f2afd5e16be2'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebbfec45a3f2afd5e16bea'), 'name': 'New York', 'country':
'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006}}
{'_id': ObjectId('67ebbfec45a3f2afd5e16beb'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebbfec45a3f2afd5e16bec'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}

14
2.4 Sorting & Projection in MongoDB
MongoDB allows us to sort query results and limit fields in the output using sorting (sort())
and projection. These features help optimize queries and retrieve only the necessary data.

2.4.1 Sorting (sort())


The sort() method orders query results based on a specified field. It accepts two values:
- 1 → Ascending order
- -1 → Descending order
Example Use Cases:
- Sort cities by population in descending order.
- Sort names alphabetically in ascending order.

2.4.2 Projection (Limiting Fields)


By default, find() returns all fields in a document. We can use projection to retrieve only specific
fields, reducing data transfer and improving performance.
Example Use Cases:
- Retrieve only the name and country of cities while excluding _id.
- Fetch only coordinates without returning other details.
Using sorting and projection together can optimize queries for better efficiency.
[ ]: sorted_cities = collection.find({"country": "USA"}).sort("population", -1)
for city in sorted_cities:
print(city)

{'_id': ObjectId('67ebb52845a3f2afd5e16bd6'), 'name': 'New York', 'country':


'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006}}
{'_id': ObjectId('67ebbfec45a3f2afd5e16bea'), 'name': 'New York', 'country':
'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006}}
{'_id': ObjectId('67ebb15c45a3f2afd5e16bc2'), 'name': 'New York', 'country':
'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006},
'deleted': True}
{'_id': ObjectId('67ebb22e45a3f2afd5e16bcc'), 'name': 'New York', 'country':
'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006}}
{'_id': ObjectId('67ebb65b45a3f2afd5e16be0'), 'name': 'New York', 'country':
'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006}}
{'_id': ObjectId('67ebaabd45a3f2afd5e16b87'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eba71b45a3f2afd5e16b5b'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebb22e45a3f2afd5e16bcd'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eba82945a3f2afd5e16b66'), 'name': 'Los Angeles', 'country':

15
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eba92d45a3f2afd5e16b71'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebaa4c45a3f2afd5e16b7c'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67bd7bf919a1b6971a3315cf'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eba4d145a3f2afd5e16b50'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebb15c45a3f2afd5e16bc3'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebac4d45a3f2afd5e16b91'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebad9d45a3f2afd5e16b9b'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebae0545a3f2afd5e16ba5'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebafc445a3f2afd5e16bb9'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebae9245a3f2afd5e16baf'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eba3eca242384525e8eb87'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebb52845a3f2afd5e16bd7'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eba22da242384525e8eb7c'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67bd853919a1b6971a3315d5'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebbfec45a3f2afd5e16beb'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eb9e61a242384525e8eb72'), 'name': 'Los Angeles', 'country':

16
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67cf46e05e438f23594c17ce'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebb65b45a3f2afd5e16be1'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67bde046bcedafe7ea2ecaa1'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67bda48519a1b6971a3315f0'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67bd889f19a1b6971a3315e0'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebbfec45a3f2afd5e16bec'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebb22e45a3f2afd5e16bce'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebafc445a3f2afd5e16bba'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebb65b45a3f2afd5e16be2'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebb15c45a3f2afd5e16bc4'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebb52845a3f2afd5e16bd8'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebaa4c45a3f2afd5e16b7d'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eba3eca242384525e8eb88'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67bd7bf919a1b6971a3315d0'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67bd853919a1b6971a3315d6'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67bd889f19a1b6971a3315e1'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67bda48519a1b6971a3315f1'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67bde046bcedafe7ea2ecaa2'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67cf46e05e438f23594c17cf'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eb9e61a242384525e8eb73'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eba22da242384525e8eb7d'), 'name': 'Chicago', 'country':

17
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebae9245a3f2afd5e16bb0'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eba4d145a3f2afd5e16b51'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eba71b45a3f2afd5e16b5c'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eba82945a3f2afd5e16b67'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eba92d45a3f2afd5e16b72'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebaabd45a3f2afd5e16b88'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebac4d45a3f2afd5e16b92'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebad9d45a3f2afd5e16b9c'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebae0545a3f2afd5e16ba6'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}

[ ]: projection = {"_id": 0, "name": 1, "population": 1} # Exclude _id


city_data = collection.find_one({"name": "New York"}, projection)
print(city_data) # {'name': 'New York', 'population': 8419600}

{'name': 'New York', 'population': 8419600}

2.5 Query Operators in MongoDB


MongoDB provides query operators to filter documents based on conditions. These operators
are used within the find() method to perform advanced queries.

2.5.1 Common Query Operators:


• $gt → Greater than

• $lt → Less than

• $gte → Greater than or equal to

• $lte → Less than or equal to

• $eq → Equal to

• $ne → Not equal to

• $in → Matches any value in an array

• $nin → Does not match any value in an array

18
2.5.2 Example Queries:
• Find cities with a population greater than 5 million ($gt)

• Find cities with a population between 1 million and 5 million ($gte and $lte)

• Find cities in a specific list of countries ($in)


These query operators allow precise data retrieval and can be combined with logical operators like
$and and $or for more complex queries.
[ ]: large_cities = collection.find({"population": {"$gt": 5000000}})
for city in large_cities:
print(city)

{'_id': ObjectId('67ebb15c45a3f2afd5e16bc2'), 'name': 'New York', 'country':


'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006},
'deleted': True}
{'_id': ObjectId('67ebb22e45a3f2afd5e16bcc'), 'name': 'New York', 'country':
'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006}}
{'_id': ObjectId('67ebb52845a3f2afd5e16bd6'), 'name': 'New York', 'country':
'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006}}
{'_id': ObjectId('67ebb65b45a3f2afd5e16be0'), 'name': 'New York', 'country':
'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006}}
{'_id': ObjectId('67ebbfec45a3f2afd5e16bea'), 'name': 'New York', 'country':
'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006}}

[ ]: mid_sized_cities = collection.find({"population": {"$gt": 2000000, "$lt":␣


↪5000000}})

for city in mid_sized_cities:


print(city)

{'_id': ObjectId('67bd7bf919a1b6971a3315cf'), 'name': 'Los Angeles', 'country':


'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67bd7bf919a1b6971a3315d0'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67bd853919a1b6971a3315d5'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67bd853919a1b6971a3315d6'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67bd889f19a1b6971a3315e0'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67bd889f19a1b6971a3315e1'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67bda48519a1b6971a3315f0'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':

19
-118.2437}}
{'_id': ObjectId('67bda48519a1b6971a3315f1'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67bde046bcedafe7ea2ecaa1'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67bde046bcedafe7ea2ecaa2'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67cf46e05e438f23594c17cf'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67cf46e05e438f23594c17ce'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eb9e61a242384525e8eb72'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eb9e61a242384525e8eb73'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eba22da242384525e8eb7c'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eba22da242384525e8eb7d'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eba3eca242384525e8eb87'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eba3eca242384525e8eb88'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eba4d145a3f2afd5e16b50'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eba4d145a3f2afd5e16b51'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eba71b45a3f2afd5e16b5b'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eba71b45a3f2afd5e16b5c'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eba82945a3f2afd5e16b66'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eba82945a3f2afd5e16b67'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67eba92d45a3f2afd5e16b71'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67eba92d45a3f2afd5e16b72'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}

20
{'_id': ObjectId('67ebaa4c45a3f2afd5e16b7c'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebaa4c45a3f2afd5e16b7d'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebaabd45a3f2afd5e16b87'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebaabd45a3f2afd5e16b88'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebac4d45a3f2afd5e16b91'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebac4d45a3f2afd5e16b92'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebad9d45a3f2afd5e16b9b'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebad9d45a3f2afd5e16b9c'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebae0545a3f2afd5e16ba5'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebae0545a3f2afd5e16ba6'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebae9245a3f2afd5e16baf'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebae9245a3f2afd5e16bb0'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebafc445a3f2afd5e16bb9'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebafc445a3f2afd5e16bba'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebb15c45a3f2afd5e16bc3'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebb15c45a3f2afd5e16bc4'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebb22e45a3f2afd5e16bcd'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebb22e45a3f2afd5e16bce'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebb52845a3f2afd5e16bd7'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}

21
{'_id': ObjectId('67ebb52845a3f2afd5e16bd8'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebb65b45a3f2afd5e16be1'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebb65b45a3f2afd5e16be2'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}
{'_id': ObjectId('67ebbfec45a3f2afd5e16beb'), 'name': 'Los Angeles', 'country':
'USA', 'population': 3970000, 'coordinates': {'lat': 34.0522, 'long':
-118.2437}}
{'_id': ObjectId('67ebbfec45a3f2afd5e16bec'), 'name': 'Chicago', 'country':
'USA', 'population': 2716000, 'coordinates': {'lat': 41.8781, 'long': -87.6298}}

2.6 iii). Update (Modify Data)


To update existing documents in a collection, we use the following methods:
• update_one(): Updates a single document that matches the specified query criteria. If
multiple documents match, only the first one found is updated.

• update_many(): Updates all documents that match the query criteria.

2.6.1 Update Operators


MongoDB provides various update operators to modify specific fields:
- $set: Updates the value of a field or adds it if it doesn’t exist.
- $inc: Increments a numeric field by a specified value.
- $rename: Renames a field in the document.
- $unset: Removes a field from the document.

2.6.2 Example Use Cases:


• Update the population of a specific city using update_one().

• Increase the population of all cities in a country using update_many().

• Add a new field, such as area, to city documents if it does not exist.
$set → Update or Add a Field Used to modify the value of a field or add it if it doesn’t exist.
[ ]: update_result = collection.update_one(
{"name": "New York"},
{"$set": {"population": 8500000}}
)

print(f" Matched {update_result.matched_count} document(s) and modified␣


↪{update_result.modified_count} document(s).")

update_result

Matched 1 document(s) and modified 1 document(s).

22
[ ]: UpdateResult({'n': 1, 'electionId': ObjectId('7fffffff0000000000000024'),
'opTime': {'ts': Timestamp(1743503342, 1), 't': 36}, 'nModified': 1, 'ok': 1.0,
'$clusterTime': {'clusterTime': Timestamp(1743503342, 1), 'signature': {'hash':
b'\x817\x16\xff\x9a\xd7F8f/6\xd8\xa3`\x7f\x91\xa1\xe5\xbe\xee', 'keyId':
7431647543664050178}}, 'operationTime': Timestamp(1743503342, 1),
'updatedExisting': True}, acknowledged=True)

$inc → Increment a Numeric Field Used to increase (or decrease) a numerical field.

[ ]: update_result = collection.update_one(
{"name": "New York"},
{"$inc": {"population": 100000}} # Increase population by 100,000
)

print(f"Updated {update_result.modified_count} document(s).")

Updated 1 document(s).
$rename → Rename a Field Used to rename a field in the document.
[ ]: update_result = collection.update_one(
{"name": "New York"},
{"$rename": {"population": "residents"}} # Renaming 'population' to␣
↪'residents'

print(f"Updated {update_result.modified_count} document(s).")

Updated 1 document(s).
$unset → Remove a Field Used to delete a field from a document.
[ ]: update_result = collection.update_one(
{"name": "New York"},
{"$unset": {"residents": ""}} # Removes the 'residents' field
)

print(f"Updated {update_result.modified_count} document(s).")


update_result

Updated 1 document(s).

[ ]: UpdateResult({'n': 1, 'electionId': ObjectId('7fffffff0000000000000024'),


'opTime': {'ts': Timestamp(1743503342, 7), 't': 36}, 'nModified': 1, 'ok': 1.0,
'$clusterTime': {'clusterTime': Timestamp(1743503342, 7), 'signature': {'hash':
b'\x817\x16\xff\x9a\xd7F8f/6\xd8\xa3`\x7f\x91\xa1\xe5\xbe\xee', 'keyId':
7431647543664050178}}, 'operationTime': Timestamp(1743503342, 7),
'updatedExisting': True}, acknowledged=True)

$mul → Multiply a Numeric Field Used to multiply the value of a numeric field by a given factor.

23
[ ]: update_result = collection.update_one(
{"name": "New York"},
{"$mul": {"population": 1.1}} # Increase population by 10%
)

print(f"Updated {update_result.modified_count} document(s).")

Updated 1 document(s).
$min → Update Only If New Value is Lower
Used to update a field only if the specified value is lower than the existing value.
[ ]: update_result = collection.update_one(
{"name": "New York"},
{"$min": {"population": 5000000}} # Updates only if population is greater␣
↪than 5M

print(f"Updated {update_result.modified_count} document(s).")

Updated 0 document(s).
$max → Update Only If New Value is Higher
Used to update a field only if the specified value is higher than the existing value.
[ ]: update_result = collection.update_one(
{"name": "New York"},
{"$max": {"population": 9000000}} # Updates only if population is less␣
↪than 9M

print(f"Updated {update_result.modified_count} document(s).")

Updated 1 document(s).
$currentDate → Set a Field to Current Date/Time
Used to update a field with the current timestamp.
[ ]: update_result = collection.update_one(
{"name": "New York"},
{"$currentDate": {"last_modified": True}} # Adds/updates last_modified␣
↪with the current date

print(f"Updated {update_result.modified_count} document(s).")

Updated 1 document(s).

24
2.7 iv. Delete (Remove Data)
To remove documents from a collection, we use the following methods:
• delete_one(): Deletes a single document that matches the specified query criteria. If
multiple documents match, only the first one found is deleted.

• delete_many(): Deletes all documents that match the query criteria.

2.7.1 Example Use Cases:


• Delete a specific city document based on its name using delete_one().

• Remove all cities with a population below a certain threshold using delete_many().

• Clear all documents from a collection by passing an empty query {} to delete_many().

2.7.2 Considerations:
• Deleting data is permanent and cannot be undone.

• Use queries carefully to avoid unintended data loss.

• Consider using backups or archiving important data before performing deletions.


[ ]: delete_result = collection.delete_one({"name": "New York"})
print(f" Deleted {delete_result.deleted_count} document(s).")

Deleted 1 document(s).

2.7.3 Soft Deletion


Instead of deleting a document permanently, you could consider a “soft delete” approach by adding
a deleted field to indicate that the document is marked for deletion. This can help you preserve
data integrity for auditing or recovery purposes.
[ ]: # soft delete
update_result = collection.update_one(
{"name": "New York"},
{"$set": {"deleted": True}}
)
print(f"Updated {update_result.modified_count} document(s).")

Updated 1 document(s).

2.7.4 Using writeConcern for Safety:


Ensure that the delete operation is acknowledged by MongoDB with an appropriate writeConcern.
This ensures data consistency and reliability.
###Deleting based on date

25
[ ]: from datetime import datetime, timedelta
threshold_date = datetime.now() - timedelta(days=365) # One year ago

delete_result = collection.delete_many({"created_at": {"$lt": threshold_date}})


print(f"Deleted {delete_result.deleted_count} document(s).")

Deleted 0 document(s).
###Deleting documents with miultiple conditions
[ ]: delete_result = collection.delete_many({"population": {"$lt": 1000000}, "name":␣
↪{"$ne": "New York"}})

print(f"Deleted {delete_result.deleted_count} document(s).")

Deleted 1 document(s).

2.7.5 Index Considerations:


If you’re frequently deleting documents based on specific fields, ensuring those fields are indexed
could help improve performance.

2.7.6 Performance Concerns:


Deleting large amounts of data at once can negatively affect performance. For large datasets,
consider using batching techniques or removing data in smaller chunks.

2.7.7 Using writeConcern for Safety:


Ensure that the delete operation is acknowledged by MongoDB with an appropriate writeConcern.
This ensures data consistency and reliability.

2.8 v. Key Take away


The table below summarizes the CRUD operations in MongoDB:

CRUD Operation Method Example


Create insert_one(), insert_many() Insert a city
Read find_one(), find() Retrieve a city
Update update_one(), update_many() Change population
Delete delete_one(), delete_many() Remove a city

###Print a JSON document containing { “hello” : “world” }

[ ]: import json

# Create a dictionary
data = {"hello": "world"}

26
# Convert the dictionary to a JSON string and print it
json_data = json.dumps(data, indent=4)
print(json_data)

{
"hello": "world"
}
Select a town via a case-insensitive regular expression containing the word new.
[ ]: import pymongo

# Query to find towns with 'new' in their name (case-insensitive)


query = {"name": {"$regex": "new", "$options": "i"}}

# Find the towns


towns = collection.find(query)

# Print the results


for town in towns:
print(town)

{'_id': ObjectId('67ebb22e45a3f2afd5e16bcc'), 'name': 'New York', 'country':


'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006},
'deleted': True}
{'_id': ObjectId('67ebb52845a3f2afd5e16bd6'), 'name': 'New York', 'country':
'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006}}
{'_id': ObjectId('67ebb65b45a3f2afd5e16be0'), 'name': 'New York', 'country':
'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006}}
{'_id': ObjectId('67ebbfec45a3f2afd5e16bea'), 'name': 'New York', 'country':
'USA', 'population': 8419600, 'coordinates': {'lat': 40.7128, 'long': -74.006}}
Find all cities whose names contain an e and are famous for food or beer
[ ]: import pymongo

# Query to find cities whose names contain 'e' and are famous for food or beer
query = {
"name": {"$regex": "e", "$options": "i"}, # Name contains 'e'␣
↪(case-insensitive)

"famous_for": {"$in": ["food", "beer"]} # Famous for food or beer


}

# Find the cities


cities = collection.find(query)

# Print the results


for city in cities:
print(city)

27
Create a new database named blogger with a collection named articles— insert a new article with
an author name and email, creation date, and text.
[ ]: from pymongo import MongoClient
from bson.objectid import ObjectId
from datetime import datetime

# MongoDB connection (Ensure you replace <password> with your actual password)
MONGO_URI = "mongodb+srv://mutubaseth:Kibakivio%[email protected]/
↪?retryWrites=true&w=majority"

# Connect to MongoDB Atlas


client = MongoClient(MONGO_URI)

# Create or select the 'blogger' database


db = client["blogger"]

# Create or select the 'articles' collection


articles_collection = db["articles"]

# Define the new article data


article = {
"author_name": "John Doe",
"author_email": "[email protected]",
"creation_date": datetime.now(),
"text": "This is a new article about MongoDB and Python!"
}

# Insert the article into the 'articles' collection


insert_result = articles_collection.insert_one(article)

# Print the inserted article's ID


print(f"Article inserted with ID: {insert_result.inserted_id}")

# Retrieve and print the inserted article


retrieved_article = articles_collection.find_one({"_id": insert_result.
↪inserted_id})

print("\nRetrieved Article:")
print(retrieved_article)

Article inserted with ID: 67ebbff145a3f2afd5e16bee

Retrieved Article:
{'_id': ObjectId('67ebbff145a3f2afd5e16bee'), 'author_name': 'John Doe',
'author_email': '[email protected]', 'creation_date': datetime.datetime(2025,
4, 1, 10, 29, 5, 19000), 'text': 'This is a new article about MongoDB and
Python!'}

28
3 Indexing, Grouping, MapReduce in MongoDB
3.0.1 Indexing:
• MongoDB uses indexes to optimize query performance, with popular types like B-trees and
GeoSpatial indexes.
• When you create a collection, MongoDB automatically indexes the _id field. To optimize
queries on other fields, you can create custom indexes.
• The explain() method helps assess the efficiency of queries. For example, creating an index
on the display field significantly speeds up queries by reducing the number of documents
scanned.
• Index creation can be resource-intensive, so it’s best to do it in the background during off-peak
times.
• MongoDB also supports indexing on nested fields using dot notation, and you can choose to
create the index in the background.

3.0.2 Grouping:
• The group() function aggregates data, much like SQL’s GROUP BY.
• Grouping can be done by any field (e.g., area code) and can include conditions to filter
documents.
• MongoDB allows complex grouping operations, but it has a limit of 10,000 documents per
group and doesn’t work well with sharded collections.
• Aggregating queries like count(), distinct(), and group() help summarize data. For in-
stance, group() can be used to count numbers over a certain range or replicate distinct()
queries.

3.0.3 MapReduce:
• MapReduce in MongoDB is used for complex data analysis. It involves two steps:
– Map: The map() function processes documents and emits data.
– Reduce: The reduce() function aggregates the emitted data.
• MongoDB also provides a finalize() step, executed once after the reducer, for final data
processing.
• A use case example involves counting phone numbers with the same digits across different
countries. A helper function extracts distinct digits, which are then used in the map() function
to emit key-value pairs, while the reduce() function sums the counts.

3.0.4 Server-Side Functions:


• MongoDB provides the eval() function to execute JavaScript code directly on the server,
reducing client-server communication overhead.
• Functions can be stored in the system.js collection and invoked remotely, allowing for more
efficient operations on large datasets.

3.0.5 Additional Notes:


• MongoDB also provides server-side commands that interact directly with the database for
tasks like profiling queries or checking system stats.

29
• Understanding the balance between client-side and server-side execution is essential for opti-
mizing MongoDB operations, especially when dealing with large-scale data or complex queries.

4 MongoDB Indexing Types:


• Single-Field Index: Optimizes queries based on a single field.
• Compound Index: Improves performance for queries using multiple fields.
• Geospatial Index: Used for location-based queries.
• Text Index: Enables full-text search.
• Hashed Index: Useful for sharding.
• Wildcard Index: Indexes all fields in a document.
• TTL Index: Automatically deletes documents after a set time.
• Sparse Index: Indexes only existing fields.
• Multikey Index: Efficiently indexes array elements.
[ ]: # Import pymongo and create a client to connect to MongoDB Atlas
from pymongo import MongoClient

# MongoDB Atlas connection URI (replace with your actual URI)


client = MongoClient('mongodb+srv://mutubaseth:Kibakivio%[email protected].
↪mongodb.net/?retryWrites=true&w=majority')

# Access the 'sample_airbnb' database and the 'listingAndReviews' collection


db = client['sample_airbnb']
collection = db['listingAndReviews']

# Check the first few records in the 'listingAndReviews' collection


collection.find_one()

[ ]: from pymongo import MongoClient

# MongoDB Atlas connection URI


client = MongoClient('mongodb+srv://mutubaseth:Kibakivio%[email protected].
↪mongodb.net/?retryWrites=true&w=majority')

# Test the connection by listing available databases


databases = client.list_database_names()
print("Available databases:", databases)

Available databases: ['blogger', 'my_database', 'sample_airbnb', 'sample_mflix',


'world_data', 'admin', 'local']

[ ]: # Access the 'sample_mflix' database and 'movies' collection


db = client['sample_mflix']
collection = db['movies']

# Fetch and print the first 5 documents from the 'movies' collection

30
cursor = collection.find().limit(5)
for i, doc in enumerate(cursor, 1):
print(f"Document {i}:")
print(doc)
print("\n---\n")

Document 1:
{'_id': ObjectId('573a1390f29313caabcd42e8'), 'plot': 'A group of bandits stage
a brazen train hold-up, only to find a determined posse hot on their heels.',
'genres': ['Short', 'Western'], 'runtime': 11, 'cast': ['A.C. Abadie', "Gilbert
M. 'Broncho Billy' Anderson", 'George Barnes', 'Justus D. Barnes'], 'poster':
'https://m.media-amazon.com/images/M/MV5BMTU3NjE5NzYtYTYyNS00MDVmLWIwYjgtMmYwYWI
xZDYyNzU2XkEyXkFqcGdeQXVyNzQzNzQxNzI@._V1_SY1000_SX677_AL_.jpg', 'title': 'The
Great Train Robbery', 'fullplot': "Among the earliest existing films in American
cinema - notable as the first film that presented a narrative story to tell - it
depicts a group of cowboy outlaws who hold up a train and rob the passengers.
They are then pursued by a Sheriff's posse. Several scenes have color included -
all hand tinted.", 'languages': ['English'], 'released': datetime.datetime(1903,
12, 1, 0, 0), 'directors': ['Edwin S. Porter'], 'rated': 'TV-G', 'awards':
{'wins': 1, 'nominations': 0, 'text': '1 win.'}, 'lastupdated': '2015-08-13
00:27:59.177000000', 'year': 1903, 'imdb': {'rating': 7.4, 'votes': 9847, 'id':
439}, 'countries': ['USA'], 'type': 'movie', 'tomatoes': {'viewer': {'rating':
3.7, 'numReviews': 2559, 'meter': 75}, 'fresh': 6, 'critic': {'rating': 7.6,
'numReviews': 6, 'meter': 100}, 'rotten': 0, 'lastUpdated':
datetime.datetime(2015, 8, 8, 19, 16, 10)}, 'num_mflix_comments': 0}

---

Document 2:
{'_id': ObjectId('573a1390f29313caabcd446f'), 'plot': "A greedy tycoon decides,
on a whim, to corner the world market in wheat. This doubles the price of bread,
forcing the grain's producers into charity lines and further into poverty. The
film…", 'genres': ['Short', 'Drama'], 'runtime': 14, 'cast': ['Frank Powell',
'Grace Henderson', 'James Kirkwood', 'Linda Arvidson'], 'num_mflix_comments': 1,
'title': 'A Corner in Wheat', 'fullplot': "A greedy tycoon decides, on a whim,
to corner the world market in wheat. This doubles the price of bread, forcing
the grain's producers into charity lines and further into poverty. The film
continues to contrast the ironic differences between the lives of those who work
to grow the wheat and the life of the man who dabbles in its sale for profit.",
'languages': ['English'], 'released': datetime.datetime(1909, 12, 13, 0, 0),
'directors': ['D.W. Griffith'], 'rated': 'G', 'awards': {'wins': 1,
'nominations': 0, 'text': '1 win.'}, 'lastupdated': '2015-08-13
00:46:30.660000000', 'year': 1909, 'imdb': {'rating': 6.6, 'votes': 1375, 'id':
832}, 'countries': ['USA'], 'type': 'movie', 'tomatoes': {'viewer': {'rating':
3.6, 'numReviews': 109, 'meter': 73}, 'lastUpdated': datetime.datetime(2015, 5,
11, 18, 36, 53)}}

31
---

Document 3:
{'_id': ObjectId('573a1390f29313caabcd4803'), 'plot': 'Cartoon figures announce,
via comic strip balloons, that they will move - and move they do, in a wildly
exaggerated style.', 'genres': ['Animation', 'Short', 'Comedy'], 'runtime': 7,
'cast': ['Winsor McCay'], 'num_mflix_comments': 0, 'poster': 'https://m.media-am
azon.com/images/M/MV5BYzg2NjNhNTctMjUxMi00ZWU4LWI3ZjYtNTI0NTQxNThjZTk2XkEyXkFqcG
deQXVyNzg5OTk2OA@@._V1_SY1000_SX677_AL_.jpg', 'title': 'Winsor McCay, the Famous
Cartoonist of the N.Y. Herald and His Moving Comics', 'fullplot': 'Cartoonist
Winsor McCay agrees to create a large set of drawings that will be photographed
and made into a motion picture. The job requires plenty of drawing supplies, and
the cartoonist must also overcome some mishaps caused by an assistant. Finally,
the work is done, and everyone can see the resulting animated picture.',
'languages': ['English'], 'released': datetime.datetime(1911, 4, 8, 0, 0),
'directors': ['Winsor McCay', 'J. Stuart Blackton'], 'writers': ['Winsor McCay
(comic strip "Little Nemo in Slumberland")', 'Winsor McCay (screenplay)'],
'awards': {'wins': 1, 'nominations': 0, 'text': '1 win.'}, 'lastupdated':
'2015-08-29 01:09:03.030000000', 'year': 1911, 'imdb': {'rating': 7.3, 'votes':
1034, 'id': 1737}, 'countries': ['USA'], 'type': 'movie', 'tomatoes': {'viewer':
{'rating': 3.4, 'numReviews': 89, 'meter': 47}, 'lastUpdated':
datetime.datetime(2015, 8, 20, 18, 51, 24)}}

---

Document 4:
{'_id': ObjectId('573a1390f29313caabcd4eaf'), 'plot': 'A woman, with the aid of
her police officer sweetheart, endeavors to uncover the prostitution ring that
has kidnapped her sister, and the philanthropist who secretly runs it.',
'genres': ['Crime', 'Drama'], 'runtime': 88, 'cast': ['Jane Gail', 'Ethel
Grandin', 'William H. Turner', 'Matt Moore'], 'num_mflix_comments': 1, 'poster':
'https://m.media-amazon.com/images/M/MV5BYzk0YWQzMGYtYTM5MC00NjM2LWE5YzYtMjgyNDV
hZDg1N2YzXkEyXkFqcGdeQXVyMzE0MjY5ODA@._V1_SY1000_SX677_AL_.jpg', 'title':
'Traffic in Souls', 'lastupdated': '2015-09-15 02:07:14.247000000', 'languages':
['English'], 'released': datetime.datetime(1913, 11, 24, 0, 0), 'directors':
['George Loane Tucker'], 'rated': 'TV-PG', 'awards': {'wins': 1, 'nominations':
0, 'text': '1 win.'}, 'year': 1913, 'imdb': {'rating': 6.0, 'votes': 371, 'id':
3471}, 'countries': ['USA'], 'type': 'movie', 'tomatoes': {'viewer': {'rating':
3.0, 'numReviews': 85, 'meter': 57}, 'dvd': datetime.datetime(2008, 8, 26, 0,
0), 'lastUpdated': datetime.datetime(2015, 8, 10, 18, 33, 55)}}

---

Document 5:
{'_id': ObjectId('573a1390f29313caabcd50e5'), 'plot': 'The cartoonist, Winsor
McCay, brings the Dinosaurus back to life in the figure of his latest creation,
Gertie the Dinosaur.', 'genres': ['Animation', 'Short', 'Comedy'], 'runtime':
12, 'cast': ['Winsor McCay', 'George McManus', 'Roy L. McCardell'],

32
'num_mflix_comments': 0, 'poster': 'https://m.media-amazon.com/images/M/MV5BMTQx
NzI4ODQ3NF5BMl5BanBnXkFtZTgwNzY5NzMwMjE@._V1_SY1000_SX677_AL_.jpg', 'title':
'Gertie the Dinosaur', 'fullplot': 'Winsor Z. McCay bets another cartoonist that
he can animate a dinosaur. So he draws a big friendly herbivore called Gertie.
Then he get into his own picture. Gertie walks through the picture, eats a tree,
meets her creator, and takes him carefully on her back for a ride.',
'languages': ['English'], 'released': datetime.datetime(1914, 9, 15, 0, 0),
'directors': ['Winsor McCay'], 'writers': ['Winsor McCay'], 'awards': {'wins':
1, 'nominations': 0, 'text': '1 win.'}, 'lastupdated': '2015-08-18
01:03:15.313000000', 'year': 1914, 'imdb': {'rating': 7.3, 'votes': 1837, 'id':
4008}, 'countries': ['USA'], 'type': 'movie', 'tomatoes': {'viewer': {'rating':
3.7, 'numReviews': 29}, 'lastUpdated': datetime.datetime(2015, 8, 10, 19, 20,
3)}}

---

5 Dataset Overview: Movies Collection in the sample_mflix


Database
The dataset from the movies collection in the sample_mflix database includes rich information
about films. Below are the key fields and their descriptions:
• plot: A brief description of the movie.
• genres: The genre(s) of the movie (e.g., “Short”, “Western”, “Drama”).
• runtime: Duration of the movie in minutes.
• cast: List of actors and actresses in the movie.
• poster: URL to the movie’s poster image.
• title: The title of the movie.
• fullplot: A more detailed description of the movie.
• languages: Languages spoken in the movie.
• released: Release date of the movie.
• directors: List of directors.
• rated: Movie’s rating (e.g., “TV-G”, “G”).
• awards: Awards won by the movie, if any.
• imdb: IMDB rating and votes.
• countries: The country where the movie was produced.
• tomatoes: Ratings and reviews from Rotten Tomatoes.
• type: Type of media (e.g., “movie”).
• year: The year of release.

5.1 1. Single-Field Index


A single-field index is created on one field in the collection. This is the most basic index and is
useful when queries filter or sort based on a single field.

33
[ ]: # Single-Field Index
db.movies.create_index([("title", pymongo.ASCENDING)])

# Check the created indexes


print(db.movies.index_information())

{'_id_': {'v': 2, 'key': [('_id', 1)]},


'cast_text_fullplot_text_genres_text_title_text': {'v': 2, 'key': [('_fts',
'text'), ('_ftsx', 1)], 'weights': SON([('cast', 1), ('fullplot', 1), ('genres',
1), ('title', 1)]), 'default_language': 'english', 'language_override':
'language', 'textIndexVersion': 3}, 'title_1': {'v': 2, 'key': [('title', 1)]},
'year_-1': {'v': 2, 'key': [('year', -1)]}}

[ ]: import pymongo

# Create a single-field index on the 'title' field in the 'movies' collection


db.movies.create_index([("title", pymongo.ASCENDING)])

# Check the created indexes


db.movies.index_information()

[ ]: {'_id_': {'v': 2, 'key': [('_id', 1)]},


'cast_text_fullplot_text_genres_text_title_text': {'v': 2,
'key': [('_fts', 'text'), ('_ftsx', 1)],
'weights': SON([('cast', 1), ('fullplot', 1), ('genres', 1), ('title', 1)]),
'default_language': 'english',
'language_override': 'language',
'textIndexVersion': 3},
'title_1': {'v': 2, 'key': [('title', 1)]},
'year_-1': {'v': 2, 'key': [('year', -1)]}}

[ ]: movie = db.movies.find_one({"title": "The Matrix"})


print(movie)

{'_id': ObjectId('573a139bf29313caabcf3d23'), 'fullplot': "Thomas A. Anderson is


a man living two lives. By day he is an average computer programmer and by night
a hacker known as Neo. Neo has always questioned his reality, but the truth is
far beyond his imagination. Neo finds himself targeted by the police when he is
contacted by Morpheus, a legendary computer hacker branded a terrorist by the
government. Morpheus awakens Neo to the real world, a ravaged wasteland where
most of humanity have been captured by a race of machines that live off of the
humans' body heat and electrochemical energy and who imprison their minds within
an artificial reality known as the Matrix. As a rebel against the machines, Neo
must return to the Matrix and confront the agents: super-powerful computer
programs devoted to snuffing out Neo and the entire human rebellion.", 'imdb':
{'rating': 8.7, 'votes': 1080566, 'id': 133093}, 'year': 1999, 'plot': 'A
computer hacker learns from mysterious rebels about the true nature of his
reality and his role in the war against its controllers.', 'genres': ['Action',

34
'Sci-Fi'], 'rated': 'R', 'metacritic': 73, 'title': 'The Matrix', 'lastupdated':
'2015-08-22 00:03:46.610000000', 'languages': ['English'], 'writers': ['Andy
Wachowski', 'Lana Wachowski'], 'type': 'movie', 'tomatoes': {'website':
'http://www.whatisthematrix.com', 'viewer': {'rating': 3.6, 'numReviews':
33319113, 'meter': 85}, 'dvd': datetime.datetime(1999, 9, 21, 0, 0), 'critic':
{'rating': 7.6, 'numReviews': 139, 'meter': 87}, 'lastUpdated':
datetime.datetime(2015, 9, 12, 17, 12, 26), 'consensus': "Thanks to the
Wachowskis' imaginative vision, The Matrix is a smartly crafted combination of
spectacular action and groundbreaking special effects.", 'rotten': 18,
'production': 'Warner Bros. Pictures', 'fresh': 121}, 'poster':
'https://m.media-amazon.com/images/M/MV5BNzQzOTk3OTAtNDQ0Zi00ZTVkLWI0MTEtMDllZjN
kYzNjNTc4L2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_SY1000_SX677_AL_.jpg',
'num_mflix_comments': 138, 'released': datetime.datetime(1999, 3, 31, 0, 0),
'awards': {'wins': 37, 'nominations': 40, 'text': 'Won 4 Oscars. Another 33 wins
& 40 nominations.'}, 'countries': ['USA', 'Australia'], 'cast': ['Keanu Reeves',
'Laurence Fishburne', 'Carrie-Anne Moss', 'Hugo Weaving'], 'directors': ['Andy
Wachowski', 'Lana Wachowski'], 'runtime': 136}

6 Movie Document Structure


This is a description of the data structure for a movie document in MongoDB. It includes various
fields such as movie details, ratings, cast, and more.

6.1 Fields:
• **_id**: The unique identifier for this document in MongoDB (automatically generated).
• title: The title of the movie (e.g., The Matrix).
• fullplot: A detailed plot summary of the movie.
• year: The release year of the movie (e.g., 1999).
• imdb: A nested dictionary containing IMDb ratings and other details:
– rating: IMDb rating (e.g., 8.7).
– votes: Number of votes on IMDb (e.g., 1080566).
• genres: A list of genres associated with the movie (e.g., ['Action', 'Sci-Fi']).
• languages: A list of languages the movie is available in (e.g., ['English']).
• cast: A list of actors in the movie.
• directors: A list of directors (e.g., ['Andy Wachowski', 'Lana Wachowski']).
• plot: A shorter version of the movie’s plot.
• tomatoes: A nested dictionary with Rotten Tomatoes ratings and metadata:
– fresh: Number of fresh reviews.
– rotten: Number of rotten reviews.
– critic: Critic rating on Rotten Tomatoes.
• awards: A dictionary describing the number of wins and nominations the movie received.
• poster: A URL to the movie’s poster image.
• released: The release date of the movie (e.g., March 31, 1999).
• runtime: The runtime of the movie in minutes (e.g., 136 minutes).

[ ]: #!pip install pyspark pymongo pandas

35
[ ]: movie = db.movies.find_one({"title": "The Matrix"})
movie

[ ]: {'_id': ObjectId('573a139bf29313caabcf3d23'),
'fullplot': "Thomas A. Anderson is a man living two lives. By day he is an
average computer programmer and by night a hacker known as Neo. Neo has always
questioned his reality, but the truth is far beyond his imagination. Neo finds
himself targeted by the police when he is contacted by Morpheus, a legendary
computer hacker branded a terrorist by the government. Morpheus awakens Neo to
the real world, a ravaged wasteland where most of humanity have been captured by
a race of machines that live off of the humans' body heat and electrochemical
energy and who imprison their minds within an artificial reality known as the
Matrix. As a rebel against the machines, Neo must return to the Matrix and
confront the agents: super-powerful computer programs devoted to snuffing out
Neo and the entire human rebellion.",
'imdb': {'rating': 8.7, 'votes': 1080566, 'id': 133093},
'year': 1999,
'plot': 'A computer hacker learns from mysterious rebels about the true nature
of his reality and his role in the war against its controllers.',
'genres': ['Action', 'Sci-Fi'],
'rated': 'R',
'metacritic': 73,
'title': 'The Matrix',
'lastupdated': '2015-08-22 00:03:46.610000000',
'languages': ['English'],
'writers': ['Andy Wachowski', 'Lana Wachowski'],
'type': 'movie',
'tomatoes': {'website': 'http://www.whatisthematrix.com',
'viewer': {'rating': 3.6, 'numReviews': 33319113, 'meter': 85},
'dvd': datetime.datetime(1999, 9, 21, 0, 0),
'critic': {'rating': 7.6, 'numReviews': 139, 'meter': 87},
'lastUpdated': datetime.datetime(2015, 9, 12, 17, 12, 26),
'consensus': "Thanks to the Wachowskis' imaginative vision, The Matrix is a
smartly crafted combination of spectacular action and groundbreaking special
effects.",
'rotten': 18,
'production': 'Warner Bros. Pictures',
'fresh': 121},
'poster': 'https://m.media-amazon.com/images/M/MV5BNzQzOTk3OTAtNDQ0Zi00ZTVkLWI0
MTEtMDllZjNkYzNjNTc4L2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_SY1000_SX677_AL_.jp
g',
'num_mflix_comments': 138,
'released': datetime.datetime(1999, 3, 31, 0, 0),
'awards': {'wins': 37,
'nominations': 40,
'text': 'Won 4 Oscars. Another 33 wins & 40 nominations.'},
'countries': ['USA', 'Australia'],

36
'cast': ['Keanu Reeves',
'Laurence Fishburne',
'Carrie-Anne Moss',
'Hugo Weaving'],
'directors': ['Andy Wachowski', 'Lana Wachowski'],
'runtime': 136}

[ ]: # Searching for movies with 'Matrix' in any indexed text field


results = db.movies.find({"$text": {"$search": "Matrix"}})
for result in results:
print(result["title"])

The Matrix
The Matrix Reloaded
The Matrix Revolutions
Commando
The Animatrix
Looker

[ ]: from pymongo import MongoClient

pipeline = [
{"$match": {"genres": "Action"}}, # Filter to only movies in the 'Action'␣
↪genre

{"$group": {"_id": None, "average_rating": {"$avg": "$imdb.rating"}}} #␣


↪Group and calculate the average rating

]
result = db.movies.aggregate(pipeline)
for res in result:
print(res)

{'_id': None, 'average_rating': 6.347098402018503}

[ ]: movies_1999 = db.movies.find({"year": 1999})


for movie in movies_1999:
print(movie["title"])

Onegin
As Bodas de Deus
Three Kings
Toy Story 2
Beowulf
The Autumn Heart
A Walk on the Moon
The Mummy
Breakfast of Champions
Being John Malkovich
Giving It Up

37
The Deep End of the Ocean
Dogma
Eye of the Beholder
The 13th Warrior
Eyes Wide Shut
Gloria
The Green Mile
From Dusk Till Dawn 3: The Hangman's Daughter
Jakob the Liar
In Dreams
The Mod Squad
One Man's Hero
Payback
RKO 281
Pushing Tin
From Dusk Till Dawn 2: Texas Blood Money
Tarzan
Tea with Mussolini
Snow Falling on Cedars
Titus
Wild Wild West
Fantasia/2000
eXistenZ
Star Wars: Episode I - The Phantom Menace
An Ideal Husband
Analyze This
The Other Sister
Life
Blast from the Past
The Cider House Rules
Abendland
Notting Hill
Sophie's World
Man on the Moon
Outside Providence
Cookie's Fortune
Santitos
Election
For Love of the Game
The Confession
The Dream Catcher
Instinct
With Fire and Sword
The Bumblebee Flies Anyway
The Iron Giant
The Out-of-Towners
Ravenous
Aimee & Jaguar

38
Abendland
Bowfinger
Edtv
Bowfinger
Mystery Men
The Mummy
October Sky
No One Writes to the Colonel
Teaching Mrs. Tingle
The Matrix
Asterix and Obelix vs. Caesar
Best Laid Plans
The Talented Mr. Ripley
Ride with the Devil
8MM
Balloon Farm
Just the Ticket
Storm of the Century
Bang Boom Bang - Ein todsicheres Ding
Instinct
Arlington Road
Entrapment
Fight Club
The 24 Hour Woman
The Astronaut's Wife
Idle Hands
Hit and Runway
Three Seasons
Cruel Intentions
Go
Long Hello and Short Goodbye
Message in a Bottle
True Crime
Varsity Blues
The Thirteenth Floor
The Insider
A Midsummer Night's Dream
Mumford
The Passion of Ayn Rand
Dirty Linen
Forces of Nature
Inspector Gadget
The Insider
The Insider
The War Zone
Crazy in Alabama
The Corruptor
Big Daddy

39
The Ninth Gate
The World Is Not Enough
Jesus Is a Palestinian
Atomic Train
Dreaming of Joseph Lees
Dick
The Girl on the Bridge
The General's Daughter
The Lost Son
Wildflowers
Holy Smoke
The Rage: Carrie 2
Sunshine
Stigmata
Two Hands
Angela's Ashes
Austin Powers: The Spy Who Shagged Me
The Bone Collector
The Idiot Returns
End of Days
Any Given Sunday
The Hi-Line
10 Things I Hate About You
Set Me Free
Deep Blue Sea
Anywhere But Here
Cradle Will Rock
Double Jeopardy
The Messenger: The Story of Joan of Arc
Topsy-Turvy
The Minus Man
Never Been Kissed
Office Space
Taal
Wildflowers
8 è Women
The Swan and the Wanderer
Speedway Junky
The Thomas Crown Affair
The Winslow Boy
Flawless
Gloomy Sunday
Jawbreaker
Spring Forward
Drop Dead Gorgeous
The Out-of-Towners
La lettre
Purgatory

40
True Crime
Woman Wanted
Sweet and Lowdown
Deterrence
Muppets from Space
South Park: Bigger Longer & Uncut
The Virgin Suicides
Beautiful People
The Adventures of Elmo in Grouchland
The Tough Ones
Macbeth in Manhattan
The Delivery
Top of the Food Chain
A Dog of Flanders
Dirty Linen
Guinevere
In Too Deep
The King and I
Agnes Browne
A Map of the World
Nice Guys Sleep Alone
Oxygen
Joe the King
She's All That
The Story of Us
The Trench
Tumbleweeds
The Wood
Bleeder
Annaluise & Anton
Simon Magus
Tuvalu
Two Ninas
Deep Blue Sea
Just Looking
Smiling Fish & Goat on Fire
Happy, Texas
Why Not Me?
Sleepy Hollow
Ambush
A Slipping-Down Life
Summer of Sam
Trick
Twin Falls Idaho
Catfish in Black Bean Sauce
The Hunley
Rembrandt
Runaway Bride

41
A Table for One
The Book of Stars
American Pie
Bringing Out the Dead
Limbo
Drive Me Crazy
Stir of Echoes
The Color of Lies
Love at First Hiccough
Mifune
Stuart Little
Alice in Wonderland
Molokai
Detroit Rock City
Felicia's Journey
Ghost Dog: The Way of the Samurai
The Limey
Liberty Heights
The Tic Code
Babar: King of the Elephants
East Is East
Anna and the King
Molokai
The Straight Story
Music of the Heart
Den eneste ene
Music of the Heart
Great Expectations
Cosy Dens
Ambush
The Sixth Sense
Superstar
Muertos de risa
Pitkè kuuma kesè
The Best Man
Ferdinando e Carolina
The Five Senses
Better Than Chocolate
American Beauty
Kiss Me in the Rain
Luna Papa
Pan Tadeusz: The Last Foray in Lithuania
The Haunting
The Jack Bull
Murder in a Small Town
Soft Toilet Seats
Boys Don't Cry
Tsatsiki, morsan och polisen

42
Wonderland
Introducing Dorothy Dandridge
The End of the Affair
Girl, Interrupted
Komodo
Light It Up
Sugar Town
Running Free
Kimberly
Simpatico
Venus Beauty
The Hurricane
Shiloh 2: Shiloh Season
Joseph and the Amazing Technicolor Dreamcoat
Magnolia
All the Rage
Seven Girlfriends
Sun Alley
Breaking Out
Gigantics
The Glass Agency
Between Your Legs
Enlightenment Guaranteed
Galaxy Quest
Siam Sunset
Mansfield Park
Passing Glory
Whiteboyz
American Pimp
But I'm a Cheerleader
Forever Mine
Harem suare
A Lesson Before Dying
Paperback Hero
Soft Fruit
The Last September
Man of Steel
Titus
American Movie
But Forever in My Mind
Est - Ouest
The Item
Judy Berlin
On the Ropes
Sex: The Annabel Chong Story
The Source: The Story of the Beats and the Beat Generation
After the Rain
Bicentennial Man

43
Me Myself I
Orfeu
Rocky Marciano
Rock 'n' Roll Frankenstein
Werner - Volles Rooèèè!!!
Le petit voleur
Eddie Izzard: Dress to Kill
Get Bruce
Gorgeous
Little Brothers
Pups
Beloved/Friend
All About My Mother
House on Haunted Hill
Lord's Lantern in Budapest
Au Pair
The Blair Witch Project
Jesus' Son
Buena Vista Social Club
Zenon: Girl of the 21st Century
It All Starts Today
Rien sur Robert
Night Wind
Doug's 1st Movie
Genghis Blues
Butterfly
Beloved/Friend
A Monkey's Tale
Godzilla 2000
Journey to the Sun
Human Traffic
Uninvited Guest
King of Comedy
Sokkotanssi
Marcel Proust's Time Regained
The Big Kahuna
The Hunt for the Unicorn Killer
Kadosh
Miss Julie
Scarfies
Introducing Dorothy Dandridge
Kilerèw 2-èch
Solas
The Color of Paradise
Le dernier souffle
The Bridge
Gendernauts: A Journey Through Shifting
Julien Donkey-Boy

44
Mr. Death: The Rise and Fall of Fred A. Leuchter, Jr.
The Color of Paradise
Sarah, Plain and Tall: Winter's End
Smart House
Swiri
Turbulence 2: Fear of Flying
Genius
Jin-Roh: The Wolf Brigade
A Midsummer Night's Dream
Muzungu
Besat
Turbulence 2: Fear of Flying
Pripyat
Romance
Whatever Happened to Harold Smith?
Romance
Whatever Happened to Harold Smith?
The Other
Grizzly Falls
Inherit the Wind
An American Tail: The Mystery of the Night Monster
Bartok the Magnificent
Humanitè
Creature
Zero Tolerance
Shadow Boxers
An Eye for an Eye
Jesus
Kikujiro
Kikujiro
Moloch
Rosetta
Sarfarosh
Sicily!
The Simple Life of Noah Dearborn
The Thirteenth Year
The Rifleman of the Voroshilov Regiment
Jesus
Hei an zhi guang
The Underground Comedy Movie
Wonderland
Charisma
Les convoyeurs attendent
End of Days
Garage Olimpo
Hei an zhi guang
The Cup
Pilgrimage

45
El amateur
A Room for Romeo Brass
Where a Good Man Goes
A Man Called Hero
Thrill Seekers
An Affair of Love
Animal Farm
The Ball
Deuce Bigalow: Male Gigolo
La dilettante
The Magical Legend of the Leprechauns
Little Crumb
Criminal Lovers
Farewell, Home Sweet Home
Johnny Tsunami
Kachche Dhaage
Manolito Four Eyes
Gen-X Cops
Chris Rock: Bigger & Blacker
Biwi No. 1
Ghost Dog: The Way of the Samurai
The Old Man and the Sea
Tuesdays with Morrie
Better Living Through Circuitry
Don't Look Under the Bed
Moonlight Whispers
Bye Bye Bluebird
Lies
The Hurricane
Not One Less
Nobody Knows Anybody
Empty Days
Strange Planet
The Trench
The Wind Will Carry Us
My Little Business
La maladie de Sachs
Sèseiji
Red Dust
Goya in Bordeaux
I'll Take You There
Himalaya
Lies
El mismo amor, la misma lluvia
My Little Business
The Out-of-Towners
An Affair of Love
La bèche

46
Je suis nè d'une cigogne
Baadshah
Let It Snow
Two Women
Blackadder Back & Forth
The Big Kahuna
Come On, Get Happy: The Partridge Family Story
New Waterford Girl
Sugar Town
Crane World
Padaiyappa
Bullets Over Summer
Grass
The Legend of Sleepy Hollow
Mast
Shower
Kiss Me in the Rain
Running Out of Time
A Christmas Carol
Hum Saath-Saath Hain: We Stand United
Pretty Devils
The Woman Chaser
Beyond the Mat
Me & Isaac Newton
External Affairs
Mr. Death: The Rise and Fall of Fred A. Leuchter, Jr.
Horse Sense
Outer Space
Happy End
The Mission
Mudhalvan
Human Resources
Shool
Vaastav: The Reality
Dead or Alive
Herod's Law
The Nameless
Oliver Twist
Andrè Hazes, zij gelooft in mij
Au bout du monde
Nowhere to Hide
Aksuat
The Debt
Blinker
Life, Autumn
One Day in September
Second Skin
Clouds of May

47
The Road Home
6ixtynin9
Audition
The Harmonium in My Memory
The Hurricane
The Waiting Game
A Stone Left Unturned
Ajlawju
Wojaczek
See You in Hell, My Darling
Peppermint Candy
Tsatsiki, morsan och polisen
Waco: A New Revelation
Memento Mori
Wild Zero
Hubad sa ilalim ng buwan
Audition
Joseph and the Amazing Technicolor Dreamcoat
Dexter's Laboratory: Ego Trip
News from a Personal War
Screwed in Tallinn
Fara
Vaali
Amarkalam

7 MongoDB Aggregation Framework


The aggregation framework uses a pipeline approach, where each stage processes the data and
passes it to the next stage.

7.1 Key Concepts:


• Aggregation Pipeline: A series of stages that transform the data. Each stage processes
the data and passes it to the next.
• Stages: Operations like $match, $group, $sort, $limit, $project, and more.

7.2 1. $match
7.2.1 Purpose:
The $match stage filters the data, passing only those documents that meet a specified condition.

7.2.2 Example:
To filter movies from the year 1999, the $match stage can be used to select documents where the
year field equals 1999.
This allows you to narrow down the dataset before performing further operations like grouping or
sorting.

48
Use Case: For example, you might want to find all movies that were released in 1999 to analyze
trends or ratings for that specific year.
[ ]: pipeline = [
{"$match": {"year": 1999}} # Filters movies from 1999
]
result = db.movies.aggregate(pipeline)
for movie in result:
print(movie["title"])

Onegin
As Bodas de Deus
Three Kings
Toy Story 2
Beowulf
The Autumn Heart
A Walk on the Moon
The Mummy
Breakfast of Champions
Being John Malkovich
Giving It Up
The Deep End of the Ocean
Dogma
Eye of the Beholder
The 13th Warrior
Eyes Wide Shut
Gloria
The Green Mile
From Dusk Till Dawn 3: The Hangman's Daughter
Jakob the Liar
In Dreams
The Mod Squad
One Man's Hero
Payback
RKO 281
Pushing Tin
From Dusk Till Dawn 2: Texas Blood Money
Tarzan
Tea with Mussolini
Snow Falling on Cedars
Titus
Wild Wild West
Fantasia/2000
eXistenZ
Star Wars: Episode I - The Phantom Menace
An Ideal Husband
Analyze This
The Other Sister

49
Life
Blast from the Past
The Cider House Rules
Abendland
Notting Hill
Sophie's World
Man on the Moon
Outside Providence
Cookie's Fortune
Santitos
Election
For Love of the Game
The Confession
The Dream Catcher
Instinct
With Fire and Sword
The Bumblebee Flies Anyway
The Iron Giant
The Out-of-Towners
Ravenous
Aimee & Jaguar
Abendland
Bowfinger
Edtv
Bowfinger
Mystery Men
The Mummy
October Sky
No One Writes to the Colonel
Teaching Mrs. Tingle
The Matrix
Asterix and Obelix vs. Caesar
Best Laid Plans
The Talented Mr. Ripley
Ride with the Devil
8MM
Balloon Farm
Just the Ticket
Storm of the Century
Bang Boom Bang - Ein todsicheres Ding
Instinct
Arlington Road
Entrapment
Fight Club
The 24 Hour Woman
The Astronaut's Wife
Idle Hands
Hit and Runway

50
Three Seasons
Cruel Intentions
Go
Long Hello and Short Goodbye
Message in a Bottle
True Crime
Varsity Blues
The Thirteenth Floor
The Insider
A Midsummer Night's Dream
Mumford
The Passion of Ayn Rand
Dirty Linen
Forces of Nature
Inspector Gadget
The Insider
The Insider
The War Zone
Crazy in Alabama
The Corruptor
Big Daddy
The Ninth Gate
The World Is Not Enough
Jesus Is a Palestinian
Atomic Train
Dreaming of Joseph Lees
Dick
The Girl on the Bridge
The General's Daughter
The Lost Son
Wildflowers
Holy Smoke
The Rage: Carrie 2
Sunshine
Stigmata
Two Hands
Angela's Ashes
Austin Powers: The Spy Who Shagged Me
The Bone Collector
The Idiot Returns
End of Days
Any Given Sunday
The Hi-Line
10 Things I Hate About You
Set Me Free
Deep Blue Sea
Anywhere But Here
Cradle Will Rock

51
Double Jeopardy
The Messenger: The Story of Joan of Arc
Topsy-Turvy
The Minus Man
Never Been Kissed
Office Space
Taal
Wildflowers
8 è Women
The Swan and the Wanderer
Speedway Junky
The Thomas Crown Affair
The Winslow Boy
Flawless
Gloomy Sunday
Jawbreaker
Spring Forward
Drop Dead Gorgeous
The Out-of-Towners
La lettre
Purgatory
True Crime
Woman Wanted
Sweet and Lowdown
Deterrence
Muppets from Space
South Park: Bigger Longer & Uncut
The Virgin Suicides
Beautiful People
The Adventures of Elmo in Grouchland
The Tough Ones
Macbeth in Manhattan
The Delivery
Top of the Food Chain
A Dog of Flanders
Dirty Linen
Guinevere
In Too Deep
The King and I
Agnes Browne
A Map of the World
Nice Guys Sleep Alone
Oxygen
Joe the King
She's All That
The Story of Us
The Trench
Tumbleweeds

52
The Wood
Bleeder
Annaluise & Anton
Simon Magus
Tuvalu
Two Ninas
Deep Blue Sea
Just Looking
Smiling Fish & Goat on Fire
Happy, Texas
Why Not Me?
Sleepy Hollow
Ambush
A Slipping-Down Life
Summer of Sam
Trick
Twin Falls Idaho
Catfish in Black Bean Sauce
The Hunley
Rembrandt
Runaway Bride
A Table for One
The Book of Stars
American Pie
Bringing Out the Dead
Limbo
Drive Me Crazy
Stir of Echoes
The Color of Lies
Love at First Hiccough
Mifune
Stuart Little
Alice in Wonderland
Molokai
Detroit Rock City
Felicia's Journey
Ghost Dog: The Way of the Samurai
The Limey
Liberty Heights
The Tic Code
Babar: King of the Elephants
East Is East
Anna and the King
Molokai
The Straight Story
Music of the Heart
Den eneste ene
Music of the Heart

53
Great Expectations
Cosy Dens
Ambush
The Sixth Sense
Superstar
Muertos de risa
Pitkè kuuma kesè
The Best Man
Ferdinando e Carolina
The Five Senses
Better Than Chocolate
American Beauty
Kiss Me in the Rain
Luna Papa
Pan Tadeusz: The Last Foray in Lithuania
The Haunting
The Jack Bull
Murder in a Small Town
Soft Toilet Seats
Boys Don't Cry
Tsatsiki, morsan och polisen
Wonderland
Introducing Dorothy Dandridge
The End of the Affair
Girl, Interrupted
Komodo
Light It Up
Sugar Town
Running Free
Kimberly
Simpatico
Venus Beauty
The Hurricane
Shiloh 2: Shiloh Season
Joseph and the Amazing Technicolor Dreamcoat
Magnolia
All the Rage
Seven Girlfriends
Sun Alley
Breaking Out
Gigantics
The Glass Agency
Between Your Legs
Enlightenment Guaranteed
Galaxy Quest
Siam Sunset
Mansfield Park
Passing Glory

54
Whiteboyz
American Pimp
But I'm a Cheerleader
Forever Mine
Harem suare
A Lesson Before Dying
Paperback Hero
Soft Fruit
The Last September
Man of Steel
Titus
American Movie
But Forever in My Mind
Est - Ouest
The Item
Judy Berlin
On the Ropes
Sex: The Annabel Chong Story
The Source: The Story of the Beats and the Beat Generation
After the Rain
Bicentennial Man
Me Myself I
Orfeu
Rocky Marciano
Rock 'n' Roll Frankenstein
Werner - Volles Rooèèè!!!
Le petit voleur
Eddie Izzard: Dress to Kill
Get Bruce
Gorgeous
Little Brothers
Pups
Beloved/Friend
All About My Mother
House on Haunted Hill
Lord's Lantern in Budapest
Au Pair
The Blair Witch Project
Jesus' Son
Buena Vista Social Club
Zenon: Girl of the 21st Century
It All Starts Today
Rien sur Robert
Night Wind
Doug's 1st Movie
Genghis Blues
Butterfly
Beloved/Friend

55
A Monkey's Tale
Godzilla 2000
Journey to the Sun
Human Traffic
Uninvited Guest
King of Comedy
Sokkotanssi
Marcel Proust's Time Regained
The Big Kahuna
The Hunt for the Unicorn Killer
Kadosh
Miss Julie
Scarfies
Introducing Dorothy Dandridge
Kilerèw 2-èch
Solas
The Color of Paradise
Le dernier souffle
The Bridge
Gendernauts: A Journey Through Shifting
Julien Donkey-Boy
Mr. Death: The Rise and Fall of Fred A. Leuchter, Jr.
The Color of Paradise
Sarah, Plain and Tall: Winter's End
Smart House
Swiri
Turbulence 2: Fear of Flying
Genius
Jin-Roh: The Wolf Brigade
A Midsummer Night's Dream
Muzungu
Besat
Turbulence 2: Fear of Flying
Pripyat
Romance
Whatever Happened to Harold Smith?
Romance
Whatever Happened to Harold Smith?
The Other
Grizzly Falls
Inherit the Wind
An American Tail: The Mystery of the Night Monster
Bartok the Magnificent
Humanitè
Creature
Zero Tolerance
Shadow Boxers
An Eye for an Eye

56
Jesus
Kikujiro
Kikujiro
Moloch
Rosetta
Sarfarosh
Sicily!
The Simple Life of Noah Dearborn
The Thirteenth Year
The Rifleman of the Voroshilov Regiment
Jesus
Hei an zhi guang
The Underground Comedy Movie
Wonderland
Charisma
Les convoyeurs attendent
End of Days
Garage Olimpo
Hei an zhi guang
The Cup
Pilgrimage
El amateur
A Room for Romeo Brass
Where a Good Man Goes
A Man Called Hero
Thrill Seekers
An Affair of Love
Animal Farm
The Ball
Deuce Bigalow: Male Gigolo
La dilettante
The Magical Legend of the Leprechauns
Little Crumb
Criminal Lovers
Farewell, Home Sweet Home
Johnny Tsunami
Kachche Dhaage
Manolito Four Eyes
Gen-X Cops
Chris Rock: Bigger & Blacker
Biwi No. 1
Ghost Dog: The Way of the Samurai
The Old Man and the Sea
Tuesdays with Morrie
Better Living Through Circuitry
Don't Look Under the Bed
Moonlight Whispers
Bye Bye Bluebird

57
Lies
The Hurricane
Not One Less
Nobody Knows Anybody
Empty Days
Strange Planet
The Trench
The Wind Will Carry Us
My Little Business
La maladie de Sachs
Sèseiji
Red Dust
Goya in Bordeaux
I'll Take You There
Himalaya
Lies
El mismo amor, la misma lluvia
My Little Business
The Out-of-Towners
An Affair of Love
La bèche
Je suis nè d'une cigogne
Baadshah
Let It Snow
Two Women
Blackadder Back & Forth
The Big Kahuna
Come On, Get Happy: The Partridge Family Story
New Waterford Girl
Sugar Town
Crane World
Padaiyappa
Bullets Over Summer
Grass
The Legend of Sleepy Hollow
Mast
Shower
Kiss Me in the Rain
Running Out of Time
A Christmas Carol
Hum Saath-Saath Hain: We Stand United
Pretty Devils
The Woman Chaser
Beyond the Mat
Me & Isaac Newton
External Affairs
Mr. Death: The Rise and Fall of Fred A. Leuchter, Jr.
Horse Sense

58
Outer Space
Happy End
The Mission
Mudhalvan
Human Resources
Shool
Vaastav: The Reality
Dead or Alive
Herod's Law
The Nameless
Oliver Twist
Andrè Hazes, zij gelooft in mij
Au bout du monde
Nowhere to Hide
Aksuat
The Debt
Blinker
Life, Autumn
One Day in September
Second Skin
Clouds of May
The Road Home
6ixtynin9
Audition
The Harmonium in My Memory
The Hurricane
The Waiting Game
A Stone Left Unturned
Ajlawju
Wojaczek
See You in Hell, My Darling
Peppermint Candy
Tsatsiki, morsan och polisen
Waco: A New Revelation
Memento Mori
Wild Zero
Hubad sa ilalim ng buwan
Audition
Joseph and the Amazing Technicolor Dreamcoat
Dexter's Laboratory: Ego Trip
News from a Personal War
Screwed in Tallinn
Fara
Vaali
Amarkalam

59
7.3 2. $project
7.3.1 Purpose:
The $project stage reshapes each document by including or excluding fields.

7.3.2 Example:
To get movie titles and their IMDb ratings, you can use the $project stage to include only the
title and imdb.rating fields.

[ ]: pipeline = [
{"$project": {"title": 1, "imdb.rating": 1}} # Project only title and IMDb␣
↪rating

]
result = db.movies.aggregate(pipeline)
for movie in result:
print(movie["title"], movie["imdb"]["rating"])

Streaming output truncated to the last 5000 lines.


Daniel and Ana 6.3
Sex & Drugs & Rock & Roll 6.6
Jesus Henry Christ 6.4
Aftershock 7.6
Helena from the Wedding 4.7
Once Upon a Time in Mumbai 7.4
Erasing David 6.1
When I Walk 7.3
Mr. Popper's Penguins 6.0
The Wild and Wonderful Whites of West Virginia 7.1
Twice Born 7.4
Winnebago Man 7.2
Taken 2 6.3
Enid 6.7
Carny 4.4
Confucius 6.2
Grown Up Movie Star 6.5
RiP: A Remix Manifesto 7.6
The Day I Was Not Born 6.8
Journey 2: The Mysterious Island 5.8
Yellowbrickroad 4.7
Earthling 4.2
Thursday Till Sunday 6.3
Transformers: Dark of the Moon 6.3
Oppai Volleyball 6.3
Winter's Bone 7.2
Obitaemyy ostrov. Skhvatka 5.1
Lost Boys: The Thirst 5.3
Rare Exports: A Christmas Tale 6.7

60
Unknown 6.9
Black Venus 6.8
I Give My First Love to You 7.4
72 days 7.0
Happy Feet 2 5.9
Aurora 6.7
Bodyguards and Assassins 6.9
Hesher 7.1
Come Undone 6.2
Everything Will be Fine 6.2
True Grit 7.7
Remember Me 7.2
The Last Summer of La Boyita 7.1
The Bannen Way 5.3
Celeste & Jesse Forever 6.7
For Colored Girls 5.9
Lourdes 6.9
Lost Persons Area 5.6
Loose Cannons 7.2
I'm Glad My Mother Is Alive 6.7
Jaffa 6.9
Wrinkles 7.6
Altitude 4.9
The Moth Diaries 4.9
Just Wright 5.8
The Stranger 4.7
Twelve 5.7
The Father and the Foreigner 5.8
Star Trek Into Darkness 7.8
Ride Along 6.1
Bloomington 6.1
Men in Black 3 6.9
The Flowers of War 7.6
Symbol 7.2
Rabbit è la Berlin 7.6
Before Your Eyes 7.3
No Strings Attached 6.2
Riddick 6.4
Finnish Blood Swedish Heart 7.2
Lover or Loser 6.0
Hop 5.5
The Hangover Part II 6.5
Bucky Larson: Born to Be a Star 3.2
Sold 7.0
They All Lie 6.3
The Best Exotic Marigold Hotel 7.3
Revenge of the Electric Car 7.1
Paranoia 5.7

61
You Again 5.8
Tracker 6.5
Over Your Cities Grass Will Grow 6.9
To Be King 5.9
Lyubov 2 Morkov 5.1
Immigration Tango 3.3
Son of Babylon 7.3
Nanny McPhee Returns 6.0
The Youngest Son 5.7
In Darkness 7.3
Torrente 4 5.4
Someone Like You 7.9
Among Wolves 6.8
Beneath Hill 60 7.0
I, Frankenstein 5.1
Facing Ali 8.0
Riverworld 5.0
General Nil 7.0
Fireball 5.2
Disco and Atomic War 7.6
Me, Them and Lara 5.8
Somewhere 6.4
The Botany of Desire 7.6
A Lonely Place to Die 6.3
Kinatay 6.6
Torn 5.7
Barney's Version 7.3
The Infidel 6.4
The Thorn in the Heart 6.4
Chinese Zodiac 6.2
To Die Like a Man 6.5
Nymph 6.3
Predators 6.4
Tsar 6.8
Senna 8.6
That's It 7.0
Shadow 5.5
True Legend 6.4
Black Nativity 4.2
Vampire Girl vs. Frankenstein Girl 6.0
Skeletons 6.8
Lovelace 6.2
East, West, East: The Final Sprint 7.2
HairBrained 5.5
Little Girl 7.1
Eastern Plays 7.3
Go Get Some Rosemary 6.4
No One Knows About Persian Cats 7.3

62
Skazka pro temnotu 6.3
The Wind Journeys 7.3
A Pierrot 6.8
The Human Race 5.4
3faltig 5.3
Heartbeats 6.8
Princess 6.2
What Became of Us 6.1
Hansel & Gretel: Witch Hunters 6.1
A Woman, a Gun and a Noodle Shop 5.6
Africa United 6.5
Small Town Murder Songs 5.9
Snowflake, the White Gorilla 4.5
Ivul 5.7
Rapt 6.7
The Wolverine 6.7
Big Miracle 6.5
Kiss the Abyss 4.2
Brick Mansions 5.7
The Pirates! Band of Misfits 6.7
Arthur Christmas 7.1
Forget Me Not 6.6
No Problem 3.9
Another Year 7.3
Faster 6.5
Inferno 7.5
A Town Called Panic 7.4
High Lane 5.6
18 Years Later 6.8
Metastases 7.7
Canned Dreams 6.9
Rules of Single Life 5.2
Mumbai Diaries 7.2
The Apparition 4.1
Louis Theroux: A Place for Paedophiles 7.3
Hubble 3D 7.8
Tèèllè Pohjantèhden alla II 6.6
The Message 7.4
R 7.2
All the Best: Fun Begins 6.0
Hysteria 6.7
Legacy: Black Ops 5.3
13 Assassins 7.6
Lovers of Hate 6.3
Rio 7.0
Mugabe and the White African 7.8
Murderer 5.3
Le mac 6.1

63
Beyond 7.0
Le Donk & Scor-zay-zee 6.3
Fright Night 6.4
One Kine Day 6.1
Oranges and Sunshine 7.1
Charlie St. Cloud 6.4
Guzaarish 7.5
The Phantom 5.9
The Founding of a Republic 5.1
Orgasm Inc. 6.1
Perfect Sense 7.1
The Sound of Insects: Record of a Mummy 7.0
Battleship 5.9
Pina 7.7
Rozygrysh 6.4
Submarine 7.3
This Must Be the Place 6.7
The American 6.3
Snow & Ashes 5.8
The Zigzag Kid 6.5
Oxygen 6.8
Martha Marcy May Marlene 7.0
The Solitude of Prime Numbers 6.4
Under the Skin 6.3
Angst 7.0
The Way 7.4
Broken 7.3
Salmon Fishing in the Yemen 6.8
Testament of Youth 7.3
Quartet 6.8
The Hedgehog 7.4
Gravity 6.7
14 Blades 6.4
All That I Love 6.9
Reflexèes de um Liquidificador 7.0
Vito 8.2
Oblivion 7.0
Episode 3: 'Enjoy Poverty' 7.7
Bruc, the Manhunt 5.6
Hot Coffee 7.6
Footnote 7.1
The Letters 8.5
Rise of the Guardians 7.3
Ways to Live Forever 7.0
Wolfy 7.1
All In: The Poker Movie 6.6
Prometheus 7.0
Between Two Fires 6.8

64
A Marine Story 6.1
Matching Jack 6.5
Magadheera 7.7
Peepli (Live) 7.5
StreetDance 3D 5.9
Beyond All Boundaries 7.3
Killer Elite 6.5
Open House 4.3
Hamlet 8.2
If These Knishes Could Talk: The Story of the NY Accent 7.3
Winnie the Pooh 7.3
Filth 7.1
Days of Grace 6.8
Roadie 5.9
Mooz-Lum 6.7
9500 Liberty 7.8
The Boy Who Cried Werewolf 6.3
Sensation 6.2
On Tour 6.6
Bananas!* 7.0
The Poll Diaries 7.0
The Pillars of the Earth 8.2
Popatopolis 7.0
Devil's Playground 5.2
Monsters University 7.4
The Help 8.1
Gravity 7.9
Lapland Odyssey 7.0
Beauty and the Paparazzo 6.2
O que Hè de Novo no Amor? 6.1
My Afternoons with Margueritte 7.2
Lightheaded 7.5
Live Music 7.7
Happy Family 6.7
Boy Wonder 6.9
As If I Am Not There 7.3
Goon 6.8
Legend of the Fist: The Return of Chen Zhen 6.3
No Man's Land 7.4
Tomorrow, When the War Began 6.2
The Conjuring 7.5
The Kings of Mykonos 4.6
The Next Three Days 7.4
The Ape 6.1
Picture Me 6.3
Lost and Found 6.4
Reign of Assassins 6.9
Better This World 7.3

65
Alice 7.3
The Gruffalo 7.5
In Search of Memory 7.3
Dream House 5.9
Letters to God 6.1
Falling Skies 7.3
Horst Schlèmmer - Isch kandidiere! 4.7
Big Sur 5.8
Outrage 6.8
The Odd Life of Timothy Green 6.6
Buried 7.0
The Grandmaster 6.5
All Is Bright 5.6
Decoding Annie Parker 6.3
Big Mommas: Like Father, Like Son 4.3
House of Last Things 6.3
I Am Number Four 6.1
Stake Land 6.5
You're So Cupid! 5.5
Heartbreaker 6.8
Die 4.9
Keep Surfing 7.3
Red White & Blue 6.4
The Italian Key 5.5
Joy 6.0
The Sword with No Name 6.4
King of Triads 5.5
Tucker and Dale vs. Evil 7.6
Cloudburst 7.3
Sweet Karma 5.2
The First Beautiful Thing 7.1
The Human Centipede (First Sequence) 4.5
Astral City: A Spiritual Journey 6.2
My Good Enemy 6.5
Hottarake no shima - Haruka to maho no kagami 7.0
What If… 6.6
At Ellen's Age 5.7
Beyond Gay: The Politics of Pride 7.3
MacGruber 5.4
Monsters 6.4
Oxygen 7.2
My Flesh My Blood 5.9
The Violent Kind 4.7
Mammuth 6.1
Prep & Landing 7.8
Summer Wars 7.6
The Aviators 6.2
Saw 3D: The Final Chapter 5.6

66
Space Battleship Yamato 6.1
Amador 6.8
Where the Road Meets the Sun 6.0
Bitter Feast 5.3
This Is It 7.3
Cedar Rapids 6.3
Hyde Park on Hudson 5.8
Looking for Jackie 4.1
Bridesmaids 6.8
Four Assassins 3.5
Attack the Block 6.6
The High Cost of Living 6.8
Supermen of Malegaon 8.0
Polite People 5.8
Orps: The Movie 5.6
Cosmopolis 5.0
A Letter to Uncle Boonmee 6.9
Happythankyoumoreplease 6.8
Melody for a Street Organ 6.9
Realnyy papa 4.9
The Lorax 6.5
Monsters vs Aliens: Mutant Pumpkins from Outer Space 6.5
Young Bruce Lee 6.5
Logan 6.1
Carbon Nation 6.8
Oblivion 7.0
Spork 6.8
Private Eye 7.1
At Middleton 6.5
Hèroes 7.2
Turning Point 5.9
Looking for Jackie 4.1
The Portuguese Nun 6.5
The Trouble with Bliss 5.4
Pure 6.9
Redline 7.5
The Famous and the Dead 6.8
Stargate SG-1: Children of the Gods - Final Cut 8.1
The Referees 7.4
Aadhavan 4.8
Lebanon 6.9
Reel Injun 7.6
8: The Mormon Proposition 7.1
The Dark House 7.5
Mr. Pip 7.2
One Piece: Strong World 7.7
No God, No Master 5.9
Making Plans for Lena 6.1

67
Red Riding Hood 5.4
Tamara Drewe 6.2
The Raven 6.4
What If 6.8
Drew: The Man Behind the Poster 7.5
The Last Truck: Closing of a GM Plant 6.9
The White Stripes Under Great White Northern Lights 8.0
Zambezia 5.8
Shuffle 6.7
The Change-Up 6.4
WWII in HD 8.7
Down Terrace 6.4
Upperdog 6.6
The Lego Movie 7.8
Alma 7.4
Dive! 7.3
The Iceman 6.9
Mildred Pierce 7.7
The Living Room of the Nation 7.3
Forgetting the Girl 5.2
Parade 7.2
Nature Calls 3.9
Beauty & the Briefcase 5.5
The Wild Hunt 6.3
Strayed 5.5
Future My Love 7.3
Korkoro 7.2
The Tree 6.6
Underworld: Awakening 6.4
The Paperboy 5.8
Space Tourists 7.0
Grandmother 7.3
Tropicèlia 7.2
Restless 6.8
Ocean Heaven 7.7
The Whisperer in Darkness 6.6
Women Without Men 6.3
Anjaana Anjaani 5.8
Mall Girls 5.5
Horrible Bosses 6.9
Castaway on the Moon 8.2
Dooman River 6.6
Private Romeo 6.2
Videocracy 6.5
La danse 7.4
I Travel Because I Have to, I Come Back Because I Love You 7.2
Kattradhu Thamizh 8.3
Alamar 7.3

68
Fantastic Four 4.0
Drive Angry 5.5
Nothing's All Bad 7.1
Oliver Sherman 6.4
Crab Trap 6.7
Genius Within: The Inner Life of Glenn Gould 7.3
Illègal 6.8
Hugh Hefner: Playboy, Activist and Rebel 7.0
Memoria de mis putas tristes 6.0
The Sinking of the Laconia 7.0
The King's Speech 8.1
Road to Nowhere 5.5
Hiroshima 6.7
Hideaway (Le refuge) 6.4
Somebody's Hero 5.7
Yelling to the Sky 5.8
A Lot Like You 8.2
Zettl 4.1
2012: Time for Change 7.2
Smoorverliefd 5.4
Haywire 5.8
Cargo 5.2
The Butterfly Circus 8.0
George Lopez: Tall, Dark & Chicano 5.8
Caterpillar 6.7
Pumzi 7.6
We Don't Care About Music Anyway 6.6
Janie Jones 6.7
The Wildest Dream 7.3
Genitori & figli:) - Agitare bene prima dell'uso 5.5
La nostra vita 6.6
Chicks 5.4
School Is Over 5.6
The Three Musketeers 5.8
Griff the Invisible 6.1
Top Floor Left Wing 6.2
The Woman with the 5 Elephants 7.6
Behind the Burly Q 6.4
Third Star 7.7
Behind Blue Skies 6.7
Heathens and Thieves 5.1
The Sunset Limited 7.4
Bo 6.0
The Chicago 8 5.8
Wanda Sykes: I'ma Be Me 7.8
Last Train Home 7.7
Resurrecting the Street Walker 5.2
Super 6.8

69
Goblin 4.1
Edie & Thea: A Very Long Engagement 7.8
Above the Street, Below the Water 5.4
Love in Another Language 7.5
Family Affair 7.3
The Reverse 7.1
Sherlock Holmes: A Game of Shadows 7.5
Walking with the Enemy 5.4
Being in the World 7.7
Paju 6.7
The Lottery 7.0
A Beginner's Guide to Endings 6.4
The Greatest Ears in Town: The Arif Mardin Story 7.2
Loki - Arnaldo Baptista 8.1
Bi, Don't Be Afraid 6.7
The Forest 6.7
The Clink of Ice 6.2
Running Turtle 6.9
The Enemy 7.3
The Host 5.9
Sunlight Jr. 5.6
Spy Kids: All the Time in the World in 4D 3.6
Better Mus Come 6.3
Some Dogs Bite 6.2
Life 2.0 6.2
Meek's Cutoff 6.5
Agnosia 5.5
Taqwacore: The Birth of Punk Islam 6.8
Xianshi shi guoqu de weilai 7.9
Love's Kitchen 5.2
Runaway 6.9
Tales of Vesperia: The First Strike 6.5
The New Tenants 7.0
Gabi on the Roof in July 6.2
A Quiet Life 6.9
Anonymous 6.9
Phobia 2 7.0
Potiche 6.4
Natimorto 6.7
Win/Win 6.7
Raise Your Head 6.1
Bes Sehir 7.2
Love & Slaps 5.8
Sins of My Father 7.3
Harishchandrachi Factory 8.2
King's Road 5.8
The Prize 6.6
Vortex 7.3

70
Magic Camp 6.6
Gun Hill Road 6.6
The Caller 6.1
Ay Lav Yu 5.7
Merry Madagascar 6.9
The Great Vazquez 6.2
Southern District 6.6
Arya 2 7.2
Cado dalle nubi 6.3
Tender Son: The Frankenstein Project 5.7
Aglaya 7.0
Melancholia 7.1
H.O.T. Human Organ Traffic 5.5
The Man from Nowhere 7.9
Archipelago 6.1
Horns 6.5
Exodus: Gods and Kings 6.1
Pregnancy Pact 5.0
Route Irish 6.4
Four Lovers 5.6
Ruhr 7.0
Welcome to the South 6.5
The Man Next Door 7.1
Basilicata Coast to Coast 6.7
Trust 7.0
Trek Nation 7.4
Ride the Divide 7.2
Red Hill 6.4
Smitty 5.3
The Disappearance of Eleanor Rigby: Him 7.0
Byzantium 6.5
Antikiller D.K. 6.0
Beginners 7.2
Line of Duty 5.2
Paa 7.2
Battle of the Year 4.9
Beautiful Boy 6.6
The Traveler 4.0
Tab Hunter Confidential 7.8
White Night 6.8
Life 9.2
Shaolin 6.9
The Magnetic Man 6.8
Dirty Business 6.5
Strange Powers: Stephin Merritt and the Magnetic Fields 7.1
Beyond the Black Rainbow 6.0
Mr. Bjarnfreèarson 7.4
Verbo 4.7

71
Loup 6.3
Elysium 6.7
Captain Phillips 7.9
Hope Springs 6.3
Crave 5.3
The Stool Pigeon 6.8
Triple Tap 6.4
The Son of No One 5.1
The Ledge 6.6
The Divide 5.8
Paranormal Activity 2 5.7
W.E. 6.2
Hide Away 5.6
The Desert of Forbidden Art 7.7
Space Chimps 2: Zartog Strikes Back 2.7
Angel & Tony 6.6
The Mortal Instruments: City of Bones 6.0
Make Believe 7.1
Retratos en un mar de mentiras 7.2
Lunopolis 6.6
A Fierce Green Fire 6.8
The Guard 7.3
Playing for Keeps 5.7
A Single Shot 5.8
Casino Jack and the United States of Money 7.1
El Medico: The Cubaton Story 6.6
10 Mountains 10 Years 8.4
Latin Music USA 8.2
Snow Flower and the Secret Fan 6.0
127 Hours 7.6
Man-choo 6.9
Sunset Strip 6.9
Treacle Jr. 6.9
Villain 7.3
Our Brief Eternity 6.6
Hier kommt: Lola 5.9
Plans for Tomorrow 6.5
The Snowman 6.8
The Unknown Woman 6.0
Street Days 7.8
The Search for Santa Paws 5.7
Harriet the Spy: Blog Wars 4.9
Rush: Beyond the Lighted Stage 8.5
Needle 4.9
Knights of Badassdom 5.7
Point Blank 6.8
The Coming Days 6.4
Kim Jong-Il's Comedy Club 7.6

72
When Love Is Not Enough: The Lois Wilson Story 7.0
Without Men 3.1
Premium Rush 6.5
Judy Moody and the Not Bummer Summer 4.1
The Barons 6.7
Successful Alcoholics 7.7
Unlikely Revolutionaries 6.1
Sebbe 6.5
12th & Delaware 7.5
Another Earth 7.0
Pure Country 2: The Gift 4.9
The Last Stand 6.4
Cafè de Flore 7.4
White Irish Drinkers 6.8
Winnie Mandela 5.8
Kawasaki's Rose 7.0
Dinosaurier 5.9
Our Brief Eternity 6.6
A Better Life 7.2
The Dish & the Spoon 5.6
Six Shooters 5.9
The Flowers of War 7.6
Saigo no Chèshingura 7.3
Under the Hawthorn Tree 7.1
The Friends at the Margherita Cafe 5.8
Cure: The Life of Another 5.7
Country Strong 6.3
The Seasoning House 6.1
Fubar: Balls to the Wall 6.7
Aral, Fishing in an Invisible Sea 5.9
Nostalgia for the Light 7.6
The Hypnotist 5.5
Day Is Done 7.1
De Dana Dan 4.9
Dock Ellis & The LSD No-No 7.6
My Perestroika 7.2
GasLand 7.7
Freedom Riders 8.1
Vavien 7.5
The Motel Life 6.0
Amish Grace 7.1
GLOW: The Story of the Gorgeous Ladies of Wrestling 7.5
Secrets in the Walls 5.2
Beautiful Creatures 6.2
Restrepo 7.6
The New Year 6.2
The Master 7.1
The Good Witch's Gift 7.3

73
Neds 7.0
The Devil Inside 4.1
Chosin 8.3
Essential Killing 6.1
Bloodwork 5.1
Higher Ground 6.3
Golmaal 3 5.2
Amigo 5.7
Ra.One 4.8
Zindagi Na Milegi Dobara 8.1
Ayahuasca: Vine of the Soul 6.4
Legendary 6.2
Climate of Change 6.2
Logorama 7.6
One Day 7.0
Dolphin Tale 6.9
Just Go with It 6.4
Just Go with It 6.4
Head Over Heels 5.5
Piazza Fontana: The Italian Conspiracy 7.1
Savage 4.8
Romantics Anonymous 6.9
No Distance Left to Run 7.9
For Greater Glory: The True Story of Cristiada 6.6
Magic & Bird: A Courtship of Rivals 8.3
Waiting for 'Superman' 7.5
Morgen 7.0
The Kennedys 7.7
Bluebird 5.9
The Voices 6.3
Prey 5.3
Secrets of the Tribe 7.5
Joan Rivers: A Piece of Work 7.4
Enemies of the People 7.8
The Tillman Story 7.8
Jean-Michel Basquiat: The Radiant Child 7.9
The Girl with the Dragon Tattoo 7.8
All the Wrong Reasons 6.1
A Family 6.7
Phase 7 5.9
Man on a Ledge 6.6
Some Guy Who Kills People 6.4
Memory Lane 5.9
War Horse 7.2
The Secret World of Arrietty 7.7
Chernaya Molniya 5.9
Suicide Club 5.8
Batman: Under the Red Hood 8.0

74
The Secret World of Arrietty 7.7
Ra.One 4.8
Crazy, Stupid, Love. 7.4
Curious George: A Very Monkey Christmas 6.2
War Don Don 7.3
A Dangerous Method 6.5
The Skeleton Twins 6.9
Measuring the World 5.7
Parked 6.9
Honey 7.2
This Movie Is Broken 5.6
Hong Kong Confidential 6.6
Mount St. Elias 7.3
Khan the Con 2.5
Texas Chainsaw 3D 4.8
The Last Circus 6.5
Beast 5.8
Countdown to Zero 6.9
Housefull 5.0
El mural 6.2
Lily Sometimes 6.2
Good Neighbors 5.8
The Dreamer 6.8
My Granpa, the Bankrobber 6.0
A Christmas Wish 6.4
Dear Guest, When Will You Leave? 6.3
The First Movie 7.3
The Dilemma 5.3
Harold's Going Stiff 5.8
Federal Bank Heist 5.8
StarStruck 6.2
Chasing Ice 7.8
Kick 7.8
Silver Tongues 6.6
ReGeneration 6.9
Repeaters 5.8
Saturday Night 7.0
I'm Still Here 6.2
The Jewel 6.7
Daydream Nation 6.4
Puncture 6.9
Guilty 7.3
The Good Doctor 5.6
A Birder's Guide to Everything 6.3
Adhurs 6.7
Khaleja 7.7
House at the End of the Street 5.6
The Holding 4.7

75
A Barefoot Dream 7.2
Steam of Life 8.0
Rammbock 6.4
Larry Crowne 6.0
G.I. Joe: Retaliation 5.8
Catfish 7.1
Reindeerspotting - Escape from Santaland 7.4
Peak: The Rescuers 6.3
What to Expect When You're Expecting 5.7
Double Wedding 5.7
Beck 7.1
Belle èpine 6.0
Maleficent 7.0
If I Were You 7.0
If God Is Willing and da Creek Don't Rise 7.2
Lego: The Adventures of Clutch Powers 5.8
Exit Through the Gift Shop 8.1
71: Into the Fire 7.4
Little Surfer Girl 6.1
Salla: Selling the Silence 6.9
Tout ce qui brille 6.1
Seitti - kilvoittelijan pèivèkirja 6.8
Warm Bodies 6.9
Jeff, Who Lives at Home 6.5
Easy Money II: Hard to Kill 6.2
Of Gods and Men 7.2
The Yellow Sea 7.4
How I Ended This Summer 7.0
The Last Sentence 6.0
Les bessones del carrer de Ponent 7.2
Natarang 7.9
A Mother's Courage: Talking Back to Autism 7.6
Insidious 6.8
It Begins with the End 5.3
Act of Valor 6.5
Maladies 5.1
Take This Waltz 6.6
Zero 2 7.8
Cousinhood 6.7
8 7.8
Lockout 6.1
Todo lo que tè quieras 6.6
Magi i luften 4.8
Swerve 5.3
LOL 4.2
Score: A Hockey Musical 4.8
Act of Valor 6.5
The Innkeepers 5.5

76
To the Wonder 6.0
The Monitor 5.7
Fast Five 7.4
Soul Surfer 7.1
This Means War 6.4
I Am Slave 6.8
Bounty Hunters 3.8
Kinbaku 6.1
This Means War 6.4
Adult World 6.1
The Woman in Black 6.5
Salinger 6.6
Z for Zachariah 6.4
Contagion 6.7
David Wants to Fly 6.9
One for the Money 5.3
New Year's Eve 5.6
Going Down in LA-LA Land 6.2
Safe House 6.8
The Princess of Montpensier 6.5
Abduction 5.0
The Drop 7.1
Heartbeats 7.2
Bill Maher… But I'm Not Wrong 7.0
Brooklyn Boheme 8.0
Seconds Apart 5.7
The Grey 6.8
Albert Nobbs 6.6
72 ga cho hak 5.7
Love in a Puff 7.3
2 Days in New York 6.0
Fire of Conscience 6.3
Badmaa$h Company 6.0
Season of the Witch 5.4
Echoes of the Rainbow 7.5
The Son of an Afghan Farmer 7.4
Amour 7.9
Only God Forgives 5.7
Slice 6.9
Higglety Pigglety Pop! or There Must Be More to Life 6.9
Echoes of the Rainbow 7.4
Caught Inside 5.4
Prom 5.4
Priest of Evil 6.0
Monga 7.0
American Reunion 6.8
Frank 7.0
Ein Tick anders 6.8

77
The Monk 5.8
The Woman in the Fifth 5.3
Midnight in Paris 7.7
Knuckle 6.8
A Good Day to Die Hard 5.3
My Way 7.8
Win Win 7.2
The Vow 6.8
DC Showcase: Jonah Hex 7.4
Tomorrow's Joe 6.6
PiraMMMida 6.6
Six-Pack Movie 5.5
Texas Killing Fields 5.7
Sword of Desperation 7.2
Loft 6.9
About Sunny 6.5
Littlerock 6.3
My Life in Orange 6.2
Lauf Junge lauf 6.5
LSD: Love, Sex Aur Dhokha 7.2
Will You Cross the Skies for Me? 7.9
Gravity 7.9
Superclèsico 6.4
Cornelis 6.3
Will You Cross the Skies for Me? 7.9
The Edge of Dreaming 6.3
Barbie in a Mermaid Tale 5.9
Wedding Planners 7.4
Thorne: Sleepyhead 6.8
Absentia 5.8
Thunder Soul 7.3
Vincent Wants to Sea 7.1
Abraham Lincoln: Vampire Hunter 6.0
Gallants 6.6
Once a Gangster 5.8
My Kidnapper 6.8
Bag It 7.4
Rubber 5.8
The Butterfly Room 5.6
A Heartbeat Away 4.5
Beats, Rhymes & Life: The Travels of a Tribe Called Quest 7.7
Leader 7.9
The Music Never Stopped 7.6
Kon-Tiki 7.2
Last Stop 174 7.1
Time Traveller 6.5
Little Deaths 4.7
Avalon High 5.7

78
Headhunters 7.6
Savages 6.5
Margin Call 7.1
You Should Meet My Son! 6.6
Alvin and the Chipmunks: Chipwrecked 4.4
Unter dir die Stadt 6.4
J. Edgar 6.6
Dark Souls 5.3
A Horrible Way to Die 5.2
Jupiter Ascending 5.5
The Change-Up 6.4
Dum Maaro Dum 6.2
White Lion 6.6
Racing Extinction 7.9
A Cross the Universe 7.5
Nice Guy Johnny 6.2
Day & Night 8.2
Animals United 4.9
Groupies bleiben nicht zum Frèhstèck 6.6
Dabangg 6.3
Cesar Chavez 6.4
Free Birds 5.9
Think Like a Man 6.6
Natural Selection 6.5
Bangkok Traffic (Love) Story 7.3
30 Minutes or Less 6.2
Final Destination 5 5.9
Oz the Great and Powerful 6.4
ParaNorman 7.0
Cinema Verite 6.5
Little Birds 6.2
Mr. and Mrs. Incredible 5.4
A Night for Dying Tigers 5.9
I Will Follow 6.1
Vampire 5.4
Igualita a mi 6.3
Blood of My Blood 7.5
The Client List 5.8
Young Adult 6.3
Hector and the Search for Happiness 6.9
Touchback 6.5
Ronal the Barbarian 6.7
7 Khoon Maaf 6.2
Blackthorn 6.6
Foster 6.8
Miss Lovely 6.7
Los Marziano 5.5
Sharpay's Fabulous Adventure 4.7

79
The Cosmonaut 4.0
Almanya: Welcome to Germany 7.2
Courageous 7.0
Body of Water 5.4
Sacrifice 4.4
Among Us 5.9
Kooky 7.4
The Immature 6.1
God of Love 7.7
Edge of Tomorrow 7.9
Van Gogh: Painted with Words 8.2
Burzynski 7.3
Friends with Benefits 6.6
The Flyboys 6.9
Shark Night 3D 4.0
Caravaggio 6.9
Caravaggio 6.9
Dragonslayer 5.8
Montevideo: Taste of a Dream 8.4
Underdogs 6.8
Johnny English Reborn 6.3
Intruders 5.4
Hands Up 6.1
Jitters 6.9
Pixels 7.6
Love Birds 5.9
Project X 6.7
An Affair of the Heart 7.2
I Want to Be a Soldier 5.9
Maledimiele 6.0
In Time 6.7
Ted 7.0
Mars et Avril 5.9
The Patience Stone 7.0
Skylab 6.4
Client 9: The Rise and Fall of Eliot Spitzer 7.4
The Armstrong Lie 7.2
No Return 6.9
Russendisko 5.6
Once Upon a Time in Queens 6.0
Justin and the Knights of Valour 6.1
A Screaming Man 6.8
Jumping the Broom 5.6
Rampart 5.8
Armadillo 7.6
A Few Best Men 5.8
The Prophet 6.8
96 Minutes 5.7

80
Postcard 7.1
Below Zero 4.4
Terraferma 6.8
Majesty 6.6
Citadel 5.4
Hell 5.9
The Depraved 5.2
Ganavim Ba Hok 7.2
Inside Job 8.3
The Art of Getting By 6.6
Erased 6.1
The Dictator 6.4
Romeo & Juliet 5.7
Queen of the Sun: What Are the Bees Telling Us? 7.1
I Wish I Knew 7.0
Life, Above All 7.1
My Joy 6.9
Lights Out 6.4
The Painting Sellers 6.6
Outbound 6.7
Love in Disguise 5.9
16 Wishes 5.6
Bedevilled 7.3
The Autobiography of Nicolae Ceausescu 7.8
The Names of Love 7.2
Le Quattro Volte 7.2
Love Like Poison 6.5
Wrath of the Titans 5.8
How to Train Your Dragon 2 7.9
The Light Thief 6.4
Million Dollar Arm 7.1
Wasted on the Young 6.0
Eye of the Hurricane 5.5
The Lost Bladesman 6.0
Totally True Love 7.0
New Kids Turbo 6.4
Here Comes the Boom 6.5
Sharunas Bartas: An Army of One 6.2
Big Miracle 6.5
Lemonade Mouth 7.0
Three Steps Above Heaven 7.1
Darling 7.3
My Joy 6.9
The Impossible 7.6
Vedam 8.1
[REC] 4: Apocalypse 5.4
[REC] 3: Genesis 5.1
Peace, Love, & Misunderstanding 5.9

81
Four Days Inside Guantanamo 7.2
Wreckers 6.1
Diary of a Wimpy Kid: Rodrick Rules 6.6
Super 8 7.1
C.O.G. 5.5
Draquila - L'Italia che trema 7.6
Kapitalism: Our Improved Formula 7.6
I Wish 7.4
The Entitled 6.2
Game of Werewolves 6.1
Kick-Ass 2 6.7
Christopher and His Kind 7.1
Shapito-shou 7.7
Our Day Will Come 6.1
La èltima cima 7.1
186 Dollars to Freedom 4.9
Ong-bak 3 4.9
The House of Suh 7.3
Mozart's Sister 6.3
Robert Mitchum Is Dead 5.3
The Doors: When You're Strange 7.7
3x3 6.9
Night Train to Lisbon 6.8
Thèrèse 6.1
Stephen Hawking's Universe 8.7
Ghost 5.7
My Week with Marilyn 7.0
The Age of Adaline 7.3
The Artist 8.0
The Matchmaker 7.2
The Suicide Shop 6.1
Wanderlust 5.6
Apricot 7.3
Bestseller 6.3
A Second Childhood 6.3
Singam 6.5
Special Forces 6.3
Safe 6.5
The Comedian 5.4
Food, Inc. 7.9
The Decoy Bride 6.1
Colombiana 6.4
Louis Cyr 7.5
Gimme Shelter 6.5
Sket 4.8
The Tall Man 6.0
Toast 6.7
Spiders 3.4

82
The Perks of Being a Wallflower 8.0
The Numbers Station 5.6
Jack and the Cuckoo-Clock Heart 7.0
Our Children 6.7
Cinderella 7.1
Grudge Match 6.5
What a Man 5.6
Cut Bank 6.0
No Rest for the Wicked 6.4
The Chaperone 5.1
Dead Sea 4.0
Chicken with Plums 7.0
On the Ice 6.3
The Unintentional Kidnapping of Mrs. Elfriede Ott 7.3
Pacific Rim 7.0
Madonna's Pig 6.0
Rakhta Charitra 7.6
Happy, Happy 6.5
Jo pour Jonathan 5.9
Cave of Forgotten Dreams 7.4
Dorfman in Love 6.1
Vampires Suck 3.5
From A to B 6.5
The Delay 7.1
The Calling 5.8
Revenge of the Bridesmaids 6.1
Looking for Jackie 4.1
The DUFF 6.6
Food Stamped 6.4
La chance de ma vie 6.1
Up There 7.3
Color of the Ocean 6.4
Damsels in Distress 5.7
3096 Days 6.3
Mirror Mirror 5.6
Spark of Being 6.3
I Hate Luv Storys 5.6
Ice Age: Continental Drift 6.7
Sarah's Key 7.5
Heat Wave 6.0
La vita facile 6.2
The Lost Thing 7.4
Now You See Me 7.3
Einer wie Bruno 6.2
Hello! How Are You? 7.3
Der letzte schène Herbsttag 6.7
Burning Heads 7.2
American Animal 4.0

83
Familiar Grounds 6.4
If Not Us, Who? 6.4
Four Horsemen 7.8
18 Meals 6.4
Bunny Drop 7.5
The Storage 6.0
Love's Resounding Courage 6.8
Batman: Year One 7.4
Tonight You're Mine 6.6
The Good Son 5.9
My Babysitter's a Vampire 6.4
The Twilight Saga: Breaking Dawn - Part 2 5.6
The Sapphires 7.0
A Cat in Paris 6.9
Falling Overnight 6.7
Marathon Boy 7.2
Kolka Cool 7.2
Keyhole 5.4
Everybody Has a Plan 5.5
Trespass 5.3
The Floating Castle 6.5
Drunk Stoned Brilliant Dead: The Story of the National Lampoon 6.9
Good Night 5.8
Take Shelter 7.4
Zohi Sdom 6.4
The Intouchables 8.6
The Wait 4.6
Intimate Grammar 7.0
Colourful 7.5
The Girls in the Band 7.9
Frits en Freddy 6.4
My Last Day Without You 5.6
Mean Girls 2 4.1
The Pasta Detectives 7.2
Eastern Drift 6.5
360 6.2
Boris - Il film 6.9
Born to Be Wild 7.6
Women Vs Men 5.4
Men Vs Women 5.7
The Santa Claus Gang 6.0
Qualunquemente 6.0
Klown 7.2
Afghan Luke 5.3
Extraterrestrial 5.8
Stoker 6.9
Bully 7.4
Girl Walks Into a Bar 5.8

84
Taipei Exchanges 6.8
Green Lantern: Emerald Knights 6.9
The World According to Ion B. 8.1
The Iron Lady 6.4
The Normal Heart 8.0
Welcome to the Punch 6.1
Circumstance 5.9
Majoritè opprimèe 7.0
Microphone 7.3
Love Begins 6.8
Wish You Were Here 5.9
Te presento a Laura 5.9
Creature 3.7
Apnea 5.7
The Source 7.2
Simple Simon 7.0
Hard Labor 6.6
Cinema Komunisto 7.9
Der ganz groèe Traum 6.8
Flying Swords of Dragon Gate 6.0
Vampire Academy 5.6
I Don't Want to Go Back Alone 8.4
Life in a Day 7.7
Terri 6.5
The Awakening 6.5
How Do You Write a Joe Schermann Song 7.6
You Ain't Seen Nothin' Yet 6.4
All for One 5.7
King of Thorn 6.5
Despicable Me 2 7.5
The Pill 5.6
Tony 10 5.4
City Under Siege 4.8
Planes 5.7
I Melt with You 6.0
High Road 5.4
Carnage 7.2
The Last Lions 8.4
Pinocchio 5.9
Mindfulness and Murder 6.9
New Jerusalem 6.6
Silent Souls 6.7
Moss 6.9
Cool It 6.8
The Guilt Trip 5.8
Tanu Weds Manu 6.5
La otra familia 7.3
The Newest Pledge 4.6

85
Aquè Entre Nos 6.9
Volcano 7.2
The Human Family Tree 7.3
A Fairly Odd Movie: Grow Up, Timmy Turner! 5.0
Deadly Code 6.4
Fly Away 6.1
Dos 5.8
Sorelle Mai 6.2
All-Star Superman 7.0
Alexander and the Terrible, Horrible, No Good, Very Bad Day 6.2
Catching the Sun
Drifters 5.5
The Reunion 6.0
Seven Days in Utopia 6.1
Mennesker i solen 5.5
Skyskraber 6.2
Quarantine 2: Terminal 5.3
Beyond the Blackboard 7.8
Beginning of the Great Revival 2.4
Captive 6.1
Peeples 5.2
Unfair World 6.2
!Women Art Revolution 6.7
Serving Life 7.9
Kokowèèh 6.4
Gooische vrouwen 6.2
Eine Insel namens Udo 6.6
The Art of Love 6.1
Manson, My Name Is Evil 4.7
Foreign Parts 6.6
The Deep Blue Sea 6.3
The Invisible Woman 6.2
360 6.2
Tungsten 6.7
Day of the Falcon 6.7
Future Weather 6.0
Urbanized 7.4
Detention 5.8
The Ugly Duckling 6.7
Casa de mi Padre 5.5
Kung Fu Panda Holiday 6.9
Last Hijack 6.2
Justin Bieber: Never Say Never 1.6
Safe Haven 6.7
Lucky 7.1
Sketches of Kaitan City 7.2
Someday This Pain Will Be Useful to You 5.8
The Hunter 6.8

86
Dimensions 5.8
Pulsar 5.1
Lockout 6.1
Bernie 6.8
Marley & Me: The Puppy Years 3.6
Ghost 5.7
Tabloid 7.1
Mankatha 7.5
Chinese Take-Out 7.3
Tarzan 4.8
The Edge 6.5
The Kingdom of Solomon 6.8
The Ah of Life 6.2
Chronicle 7.1
A Funny Man 7.0
Snowpiercer 7.0
Lovely Molly 5.3
Les Misèrables 7.6
4:44 Last Day on Earth 4.5
Street Kings 2: Motor City 4.9
13 Minutes 7.2
My Sucky Teen Romance 5.2
The Whale 7.9
The Last Days on Mars 5.5
The Lost Valentine 7.5
The Fourth State 6.0
Dragon Age: Dawn of the Seeker 5.9
Metrobranding 7.5
Ismael 6.2
Joyful Noise 5.6
Lola Versus 5.4
Bicicleta, cullera, poma 7.2
Omar Killed Me 6.7
21 & Over 5.9
Shameless 5.4
Alex Cross 5.1
The Ages of Love 5.9
The Arrival of Wang 5.8
The Devil's Rock 5.7
The Bay 5.6
Majority 7.5
From the Head 7.8
Der Sommer der Gaukler 6.2
A Crush on You 6.1
Piranha 3DD 3.8
The Spectacular Now 7.2
Yellow Rock 4.6
The Woman 6.1

87
In the Land of Blood and Honey 4.3
Purge 7.2
Summer of Goliath 5.9
Drift 6.3
Glass Chin 5.2
Midnight's Children 6.1
Do Dooni Chaar 7.6
Oki's Movie 6.9
Only Lovers Left Alive 7.3
Time of Eve 7.6
Anna 6.4
How to Die in Oregon 8.3
Life for Sale 6.0
The Colors of the Mountain 7.1
The Discoverers 5.6
Monster Brawl 3.6
The Inbetweeners Movie 6.8
Dr. Ketel 6.8
The Monkey King 4.7
Dragon 7.1
Dreileben 6.9
Another Happy Day 6.0
Le jeu de la mort 7.4
Neue Vahr Sèd 6.8
Snow on Tha Bluff 6.6
Heleno 6.9
October Baby 6.7
Thank You 4.5
The Green 6.5
Friends with Kids 6.2
Neverland 6.5
Tormented 5.5
Pink Saris 7.0
The Swell Season 6.9
Tom Sawyer 6.3
The Butcher, the Chef, and the Swordsman 5.8
Home for Christmas 6.2
Tom and Jerry Meet Sherlock Holmes 6.7
Gang de qin 7.3
Viva Riva! 6.2
The Ditch 7.0
We're the Millers 7.1
Inbred 5.3
The First Assignment 6.2
The Suspicions of Mr Whicher: The Murder at Road Hill House 6.5
Beyond Outrage 6.8
The Preacher's Daughter 5.3
Scared Shrekless 6.8

88
7 Aum Arivu 5.8
Delhi in a Day 7.1
Barbie: A Fashion Fairytale 5.9
Hello Stranger 7.6
Casus belli 7.2
Killer Joe 6.7
Sacrifice 6.2
Here Comes the Boom 6.5
The Trouble with the Truth 5.4
The Way Way Back 7.4
How to Stop Being a Loser 4.8
Livid 5.7
Sintel 7.6
Scouts Guide to the Zombie Apocalypse
Fire in Babylon 7.7
Auk Nr. 8 7.6
Kill Me Please 6.4
Double Dhamaal 3.8
Remembrance 7.2
Men in the City 2 6.4
Sugar 5.4
Bodyguard 4.5
A Letter to Elia 7.7
Blades of Blood 5.9
Rubble Kings 6.8
Ender's Game 6.7
The Lords of Salem 5.1
Silence 6.6
Drift 6.3
ID:A 6.1
Cancel Christmas 5.6
Bekas 7.4
Hospitalitè 6.7
Time Freak 7.2
The Redemption of General Butt Naked 7.4
No One Killed Jessica 7.2
The Price of Sex 7.5
Childish Games 5.5
Eden 6.7
Public Speaking 7.7
Unicorn City 5.7
When Pigs Have Wings 7.0
First Ascent 8.4
So Hard to Forget 6.1
Snow White and the Huntsman 6.1
The Adderall Diaries 6.4
A Place at the Table 6.8
Tick Tock Tale 7.5

89
Carol Channing: Larger Than Life 7.5
PressPausePlay 7.6
Something Ventured 7.0
Khichdi: The Movie 7.1
The Dynamiter 6.9
The River Murders 5.2
City Slacker 5.0
Motorway 6.0
Trollhunter 7.0
Mere Brother Ki Dulhan 5.8
Lesson Plan 7.4
A Gang Story 7.0
Jersey Boys 6.9
Jersey Boys 6.9
Position Among the Stars 7.7
Sabotage 5.7
Your Sister's Sister 6.7
I Don't Know How She Does It 4.8
Too Big to Fail 7.4
Red Eagle 5.5
The Greatest Movie Ever Sold 6.6
Donovan's Echo 6.2
Guilty of Romance 6.8
Yuma 6.1
When the Lights Went Out 5.3
Into the Middle of Nowhere 7.0
Found in Time 5.5
Buddha Mountain 6.7
Phil Spector 6.3
The Stoker 6.6
Too Big to Fail 7.4
Three Quarter Moon 7.1
Brother's Keeper 5.2
Hell and Back Again 6.5
Jig 6.6
Moonrise Kingdom 7.8
Red Lights 6.2
Sound of My Voice 6.7
Tiger Eyes 6.4
Saya-zamurai 6.9
Blood Money 3.2
Buck 7.6
Agency of Vengeance: Dark Rising 3.4
Dance of Outlaws 5.8
Two Rabbits 7.4
Farewell, My Queen 6.4
Ferocious 4.2
Summer Games 6.6

90
Kalevet 5.9
Karen Cries on the Bus 6.6
Farewell, My Queen 6.4
Motivational Growth 6.5
Naked As We Came 6.1
Kawa 6.0
Forever Yours 6.5
Santa's Apprentice 6.3
You Will Be My Son 6.9
InAPPropriate Comedy 2.9
Waiting for Lightning 7.1
Wartorn: 1861-2010 7.7
Yeh Saali Zindagi 7.5
Holidays by the Sea 5.5
Welcome to the North 5.2
Carl Panzram: The Spirit of Hatred and Vengeance 6.5
Dookudu 7.7
Marianne 4.9
The Giants 6.7
Starbuck 7.3
The Day 5.2
Twixt 4.8
Double Tide 5.7
Apartment 143 5.1
Extracted 6.5
Painless 6.1
èVivan las Antipodas! 7.1
Bombay Beach 7.0
Diana 5.5
Unconditional 7.2
Like Crazy 6.7
This Is 40 6.2
The Loving Story 7.5
The Ides of March 7.1
Ill Manors 7.0
Madrid, 1987 6.4
Codependent Lesbian Space Alien Seeks Same 6.0
One Life 7.9
The Strange Ones 6.7
Walking with Dinosaurs 3D 5.2
Zohi Sdom 6.4
No One Lives 6.0
The First Time 7.0
The First Time 7.0
Arbitrage 6.6
Killing Them Softly 6.2
Styria 5.5
Tad, the Lost Explorer 5.9

91
The Expendables 2 6.7
Upside Down: The Creation Records Story 7.1
Bringing Ashley Home 6.2
Poslednyaya skazka Rity 7.0
Koran by Heart 7.3
Killing Them Softly 6.2
Silent House 5.3
Great Migrations 8.2
Shadow Dancer 6.2
El èngel de Budapest 6.2
Apollo 18 5.2
1911 6.0
Dragon Day 4.0
Foxfire 6.2
Stonehearst Asylum 6.8
Wreck-It Ralph 7.8
The Forgotten Space 6.9
The Catechism Cataclysm 5.5
Where Do We Go Now? 7.4
Jiro Dreams of Sushi 7.9
The Invader 6.7
Target 5.9
Poongsan 6.6
Poslednyaya skazka Rity 7.0
The Dark Side of Chocolate 7.4
Ship of Theseus 8.2
The Punk Syndrome 7.9
Winds 4.5
Great Migrations 8.0
Bettie Page Reveals All 7.1
Don't Go Breaking My Heart 6.6
Kauwboy 7.1
United 7.5
Bobby Fischer Against the World 7.4
Scooby-Doo! Legend of the Phantosaur 6.6
Paranormal Activity 3 5.9
The Fantastic Flying Books of Mr. Morris Lessmore 8.0
The Culture High 8.4
The Whale 7.9
Manny 7.3
Maktub 6.8
Aftershock 4.8
Stopped on Track 7.7
Anna Karenina 6.6
The Minister 6.7
Jayne Mansfield's Car 6.3
Jayne Mansfield's Car 6.3
Good for Nothing 5.9

92
Letters from the Big Man 6.7
The Odds 4.9
Ursul 6.7
Two Lives 7.1
John Dies at the End 6.4
Tèkyè kèen 6.2
Groenten uit Balen 7.0
Miss Representation 7.7
The Parade 7.3
A Thousand Cuts 5.2
God Bless Ozzy Osbourne 7.5
Widows 6.3
Fry and Laurie Reunited 7.9
Ricky Rapper and Cool Wendy 4.7
Cyrano Agency 6.8
Fire in the Blood 7.8
Paths of Hate 7.5
Being Elmo: A Puppeteer's Journey 7.7
Jess + Moss 6.3
Mad Bastards 6.5
Madea's Big Happy Family 4.4
Page One: Inside the New York Times 6.9
Naked Harbour 6.5
Resurrect Dead: The Mystery of the Toynbee Tiles 7.4
The Flaw 7.3
The Last Mountain 7.6
To Get Her 5.4
We Were Here 7.9
House of the Rising Sun 4.4
Aung San Suu Kyi 6.7
Josè and Pilar 8.4
The Maze Runner 6.8
In Their Skin 5.3
Zero Dark Thirty 7.4
The Campaign 6.2
Amour 7.9
Fight for Your Right Revisited 8.1
Inherent Vice 6.7
Pilgrim Song 7.7
The Maze Runner 6.8
Spooky Buddies 4.7
Superheroes 6.5
Cirque du Soleil: Worlds Away 6.7
Deano and Nige's Best Last Day Ever 5.7
Chromeskull: Laid to Rest 2 5.1
When Santa Fell to Earth 5.7
Finisterrae 6.6
Eco-Pirate: The Story of Paul Watson 7.8

93
Superheroes 6.5
Wild Bill 7.2
Tokyo Family 7.5
The Border 6.3
7 Days in Havana 6.0
I Want You 7.1
Banklady 6.2
From Up on Poppy Hill 7.4
Bedevilled 7.3
Rudderless 7.5
This Is Martin Bonner 6.6
Her 8.0
Joanna 6.8
American Hustle 7.3
Barbie: A Fairy Secret 5.4
Argo 7.8
That Awkward Moment 6.1
Brooklyn Castle 7.3
Accused 7.1
Cool Kids Don't Cry 7.5
Bohemian Eyes 7.4
Jacob 4.0
From Up on Poppy Hill 7.4
Me and You 6.6
The Sandman 7.0
The Lady 7.1
Lèrkevej - til dèden os skiller 5.1
Woman in Love 5.7
Miss Farkku-Suomi 6.5
The Women on the 6th Floor 7.1
Human Planet 9.2
Brutal Relax 6.7
Genius on Hold 6.9
Lost Christmas 7.1
Mèa 6.7
As I Lay Dying 5.4
Bir Avuè Deniz 4.6
What a Beautiful Day 6.2
Black Thursday 6.7
As Luck Would Have It 6.2
Not Another Happy Ending 6.3
Skew 4.4
The Stig-Helmer Story 4.4
Wasted Youth 6.0
Ecstasy 5.1
Unbroken 7.2
Happiness Is a Warm Blanket, Charlie Brown 7.2
Last Winter 5.8

94
Zombadings 1: Patayin sa shokot si Remington 5.6
èber uns das All 6.7
Countdown 6.6
Project Nim 7.4
Il giorno in piè 6.1
The Crown Jewels 5.8
After Earth 4.9
Ernest & Celestine 7.9
The Aggression Scale 5.9
Another Me 4.7
The Missing Piece: Mona Lisa, Her Thief, the True Story 7.4
Allez, Eddy! 6.3
Lollipop Monster 6.5
The Place Beyond the Pines 7.3
Is the Man Who Is Tall Happy? 7.0
Girl in Progress 5.6
Chronicle of My Mother 7.4
Dreams of a Life 6.8
Black & White & Sex 5.6
Treasure Island 6.4
Aadukalam 7.9
Cold Blooded 5.5
Happy End 6.0
Kahaani 8.2
Nebraska 7.8
Bullhead 7.4
Easy! 6.6
The Congress 6.5
The Nut Job 5.8
Top Cat: The Movie 4.8
Waar 8.5
RED 2 6.7
My Best Enemy 6.8
Sassy Pants 6.2
èvocateur: The Morton Downey Jr. Movie 6.8
Reagan 7.3
Clutter 6.7
Siberia, Monamour 7.7
Annie 5.2
Scenes from the Suburbs 7.4
We Steal Secrets: The Story of WikiLeaks 6.9
95ers: Echoes 4.4
The Double 6.5
The Light Bulb Conspiracy 8.1
I Am I 5.5
The Entrepreneur 6.1
Phineas and Ferb the Movie: Across the 2nd Dimension 7.6
Midnight FM 6.7

95
Hotel Swooni 5.8
Avalon 5.5
Mad As Hell 7.0
About Last Night 6.1
Dukhless 6.5
Fools on the Hill 8.6
Captivated: The Trials of Pamela Smart 6.6
Tasting Menu 5.8
So Much Water 6.3
She Monkeys 5.5
Boca 5.6
Harvest 6.7
The Kid with a Bike 7.4
The Ballad of Nessie 7.1
Spike Island 6.4
A Spell to Ward Off the Darkness 6.0
Capitèes da Areia 6.2
Tales of the Night 6.8
Evidence 5.3
Foreverland 6.5
Passion 5.3
Delicacy 6.6
Winter in the Blood 6.2
The Girl and the Fox 6.9
Big Ass Spider! 5.3
Rise of the Guardians 7.3
Shala 8.1
Mad As Hell 7.1
Appropriate Adult 7.6
Detective K: Secret of Virtuous Widow 6.4
A Separation 8.4
Pawn's Move 6.3
Avè 7.0
Dhoom:3 5.5
Mad As Hell 7.1
Mad As Hell 7.1
Tenchi: The Samurai Astronomer 7.2
Geek Charming 6.6
Errors of the Human Body 5.3
Bleak Night 7.3
Great Expectations 6.4
Slow Action 6.7
Shaitan 7.4
The Baytown Outlaws 6.3
Trishna 6.0
Mad As Hell 7.1
War of the Buttons 6.0
Northern Soul 6.4

96
Queen of the Desert 6.1
The Fifth Estate 6.2
Winter's Tale 6.2
Last Love 6.8
Buck Wild 4.5
Free Ride 5.6
Journey to Agartha 7.3
Ruby Sparks 7.2
Circles 7.9
Recoil 5.2
The Face of Love 6.1
The Magic of Belle Isle 7.0
Divergent 6.8
Ruby Sparks 7.2
The Words 7.1
Angels of Sex 6.5
A Estrada 47 6.3
The Cat Vanishes 6.4
Where Once We Walked 5.9
Entity 4.6
Kotoko 6.6
Madagascar 8.6
The Unjust 6.7
Winning Streak 5.3
Mourir auprès de toi 7.2
Captain America: The Winter Soldier 7.8
Code Blue 5.7
Thurgood 7.6
Ai Weiwei: Never Sorry 7.6
Metro Manila 7.6
12 Dates of Christmas 6.4
A Cube of Sugar 7.5
Reality 6.7
Imagine 7.4
The Heineken Kidnapping 6.5
The Orator 7.0
A Flat for Three 6.2
Around the Block 5.2
Frozen Silence 5.8
Megamind: The Button of Doom 6.5
The Guillotines 4.8
The German Doctor 6.8
Aarakshan 6.2
Life Back Then 6.6
Hello Ghost 7.7
Game Change 7.4
Superstar 5.3
The Finger 6.3

97
Rhino Season 6.7
To Write Love on Her Arms 6.6
To Write Love on Her Arms 6.6
Goltzius and the Pelican Company 6.7
Ko 7.8
The Snows of Kilimanjaro 7.2
Zhauzhèrek myng bala 6.6
Mr Perfect 7.0
Overheard 2 6.8
Dream World 6.8
Foo Fighters: Back and Forth 8.4
A Letter to Momo 7.3
My Father and the Man in Black 6.6
Why Stop Now? 5.5
Django Unchained 8.5
You're Next 6.5
Love Is All You Need 6.6
The Union 7.6
Big Sur 5.8
Snow White 7.5
Percy Jackson: Sea of Monsters 5.9
Percy Jackson: Sea of Monsters 5.9
That Burning Feeling 5.6
Beethoven's Christmas Adventure 4.6
End of Watch 7.7
Just Like a Woman 5.6
Resident Evil: Retribution 5.4
Tim and Eric's Billion Dollar Movie 5.2
Third Reich: The Rise & Fall 8.5
Hamilton: I nationens intresse 6.3
Little Brother, Big Trouble: A Christmas Adventure 5.8
Django Unchained 8.5
God's Own Child 8.0
The Sorcerer and the White Snake 5.9
Last Passenger 5.6
A Little Thing Called Love 7.7
Not Waving But Drowning 6.3
To Rome with Love 6.3
Black's Game 6.8
Goddess 6.0
Turbo 6.5
Undefeated 7.8
In the Shadow 7.2
Sien nui yau wan 5.7
Safety Not Guaranteed 7.0
Corn Island 7.9
The Employer 4.3
Mamitas 7.0

98
Millhaven 7.0
Alias Ruby Blade 8.2
Conan O'Brien Can't Stop 7.0
Low Down 6.3
Road North 6.5
Confession of a Child of the Century 4.2
The Student 7.0
Hellbenders 4.7
In the Shadow 7.2
Mission to Lars 6.6
Song of the Sea 8.2
Escort in Love 6.1
The Sessions 7.2
The Battle for Marjah 7.4
Triangle: Remembering the Fire 8.1
The Samaritan 5.6
Thermae Romae 6.4
The Woodsman and the Rain 7.1
Kevin 6.7
100% Love 6.9
Black Pond 6.0
Brazilian Western 6.7
Filly Brown 5.5
SuckSeed: Huay Khan Thep 7.7
The Great Magician 5.9
The East 6.9
Xianshi shi guoqu de weilai 7.9
Won't Back Down 6.4
Blutzbrèdaz 6.1
The Judge 7.5
The Amazing Spider-Man 2 6.8
Liberal Arts 6.8
Here Without Me 8.1
God Loves Uganda 7.5
Musical Chairs 4.6
Into the White 7.1
Hello Herman 5.8
Sparkle 5.6
No Tomorrow
Five 7.0
Requiem for a Village 6.9
X-Men: Days of Future Past 8.1
World Without End 6.9
Maggie 5.6
Unsere Mètter, unsere Vèter 8.5
A Pigeon Sat on a Branch Reflecting on Existence 7.2
Shakespeare High 7.4
Good Deeds 5.3

99
Klitschko 7.8
Lucky Them 6.0
Un amor 6.4
Lord of Darkness 4.5
The Legend of Kaspar Hauser 6.7
The Legend of Kaspar Hauser 6.6
The Dead Man and Being Happy 5.5
Crawlspace 4.8
Labrador 5.8
About the Pink Sky 6.8
Billa 2 6.3
Complicity 4.2
The Painting 7.3
It Was the Son 6.8
Quiz 6.0
The Hoarder 6.1
Ace Attorney 6.7
A.C.A.B. 6.6
How I Live Now 6.5
Cowgirls 'n Angels 6.0
Il castello 6.5
My Little Princess 6.4
The Raid: Redemption 7.6
Haunters 6.3
Himizu 7.1
Scattered Cloud 6.1
Garibaldi's Lovers 6.2
Parker 6.2
The Samurai of Ayothaya 6.0
Fast & Furious 6 7.2
Devil's Pass 5.7
Toomelah 6.0
Looking for Hortense 6.2
Michael 7.0
Yes or No 7.2
Flight 7.3
LUV 5.8
The Piano Tuner 7.9
Nobody Walks 5.4
Stanley's Tiffin Box 7.9
Catching Hell 7.8
Rags 7.2
Nova Zembla 5.7
Miss Bala 6.5
The Call 6.7
Penguins of Madagascar 6.8
God Bless America 7.3
A Little Bit Zombie 5.3

100
Nurse 3D 4.6
Hayabusa 6.2
Magic Mike 6.1
Shor in the City 7.2
Murder 2 6.0
Time of My Life 7.2
Another World
Bachelorette 5.3
Good Vibrations 7.2
Jesus Loves Me 5.5
Numbered 8.3
The Clown 7.4
Pompeii 5.6
Pusher 5.5
The Child 4.2
Zero 7.3
Trash 7.2
Arirang 6.9
Beauty Day 7.3
Anjathe 8.0
Open Road 5.5
Tatsumi 7.2
Sinister 6.8
Ghost Graduation 6.3
Unit 7 6.5
The Best Offer 7.8
The Angels' Share 7.0
Trance 7.0
Let's Be Cops 6.5
Frankenstein's Army 5.3
Fire with Fire 5.7
Once Upon a Time in the North 6.2
Warrior King 2 5.3
Pyaar Ka Punchnama 7.8
Goodbye 7.2
Shameless 5.3
Jump 6.4
Texas Chainsaw 3D 4.8
After the Dark 5.7
Lines of Wellington 6.2
Heaven Is for Real 5.8
Magic Magic 5.0
People of a Feather 7.9
Terry Pratchett: Choosing to Die 8.2
Comforting Skin 4.9
Cyberbully 6.0
Dolfje Weerwolfje 6.2
The Big Wedding 5.6

101
Seven Psychopaths 7.2
Isoroku Yamamoto, the Commander-in-Chief of the Combined Fleet 6.5
Thanks for Sharing 6.4
The Paperboy 5.8
What Maisie Knew 7.5
Delhi Belly 7.6
Not Suitable for Children 5.8
The Cat 5.9
Jodorowsky's Dune 8.1
Mud 7.4
Please Kill Mr. Know It All 4.6
The Bling Ring 5.1
Don't Click 4.9
The Brass Teapot 6.4
The Hounds 3.3
The Last Days 6.1
Chinese Puzzle 7.0
The Body 7.4
I Am Jesus 6.1
Dirty Bomb 3.8
Now Is Good 7.2
One Small Hitch 6.5
Sunny 7.9
At Any Price 5.7
London - The Modern Babylon 7.2
Carrie 6.0
Rènia 6.5
Deck the Halls 5.0
The Citizen 7.0
Morgan 6.5
A Gun in Each Hand 6.5
Exeter 4.6
Two Days 7.1
18 Years Old and Rising 6.3
The Captains 7.0
Anina 7.4
Dear God No! 4.2
Singham 6.7
Viagem a Portugal 6.8
Prohibition 8.2
Quebrando o Tabu 7.7
Child of God 5.4
Funeral Kings 6.3
Capital 6.5
The Immigrant 6.6
The Look of Love 6.0
The Hangover Part III 5.9
The Hunger Games: Mockingjay - Part 1 6.8

102
The Hunger Games: Catching Fire 7.7
Un giorno devi andare 6.4
The Dirty Picture 6.7
I Am Bruce Lee 7.5
Patatje Oorlog 6.1
Gangs of Wasseypur 8.4
See Girl Run 5.1
Space Milkshake 7.5
All Watched Over by Machines of Loving Grace 8.4
Girl Fight 6.4
Paul Williams Still Alive 6.9
Sex Tape 5.1
La Luna 8.0
Low & Clear 7.1
American Mary 6.3
Abiogenesis 6.7
Imaginaerum 6.2
Noah 5.9
Kiss of the Damned 5.5
The Woman in the Septic Tank 7.2
Marie Krèyer 6.3
Bovines 6.8
Nicky's Family 7.8
The Undefeated 2.3
Inside 7.2
Tomorrowland 6.6
In the House 7.4
The Red and the Blue 6.3
Save the Date 5.7
Boys of Abu Ghraib 5.3
Dark Girls 7.8
Stalingrad 5.6
The Imposter 7.5
Labor Day 6.9
Infinitely Polar Bear 7.2
Homevideo 7.5
Lincz 6.4
You & Me Forever 5.7
Automata 6.1
Compliance 6.4
General Education 4.3
Leafie, a Hen Into the Wild 7.1
Fraktus - Das letzte Kapitel der Musikgeschichte 7.1
A Most Wanted Man 6.8
Into the Abyss 7.3
And While We Were Here 5.6
Far Out Isn't Far Enough: The Tomi Ungerer Story 7.6
The Two Faces of January 6.2

103
Somewhere I Have Never Travelled 7.0
Call Girl 6.6
Queen: Days of Our Lives 8.5
Policeman 6.2
Hit 'n Strum 7.2
Schlussmacher 5.6
The Olsen Gang in Deep Trouble 5.1
Magic Beyond Words: The JK Rowling Story 6.6
Rurouni Kenshin 7.6
Rush 8.2
Kung Fu Panda: Secrets of the Masters 6.9
Pain & Gain 6.5
Putzel 6.4
Furious 6.1
Begin Again 7.5
Thor: The Dark World 7.1
Tai Chi Zero 6.1
The Young and Prodigious T.S. Spivet 7.1
The Rise 6.5
Holy Flying Circus 7.2
Pitch Perfect 7.3
Stolen Seas 7.1
Morocco 6.2
Atlas Shrugged II: The Strike 5.5
Austenland 6.2
Altergeist 3.9
Hatfields & McCoys 8.1
Cloudy with a Chance of Meatballs 2 6.5
After Fall, Winter 6.6
A Perfect Plan 6.3
Dad 6.7
Storage 24 4.4
Tio Papi 6.9
Werewolf: The Beast Among Us 5.1
Exists 5.2
The New Watchdogs 7.4
Dead Before Dawn 3D 4.9
Chained 6.4
The Dancer 7.2
Red Hook Summer 5.0
The Artist and the Model 6.6
El Gringo 5.4
Robot & Frank 7.1
The Island President 7.3
Digging Up the Marrow 5.8
Chernobyl Diaries 5.0
Force 6.1
Il Futuro 5.8

104
Pandora's Promise 7.3
Tower Block 5.9
Fat Kid Rules the World 6.4
It's a Disaster 6.5
Crulic - drumul spre dincolo 7.6
Home from Home: Chronicle of a Vision 7.9
Trailer Park Jesus 6.7
Laugh at My Pain 7.5
Rafa 6.2
Breathe In 6.4
Machete Kills 5.6
My Tomorrow 4.8
The Adopted 6.7
My Name Is Ki 6.0
Mission Blue 7.9
Jesse Stone: Benefit of the Doubt 7.0
Sanatorium 4.9
Neighbors 6.4
The Frozen Ground 6.4
A Fantastic Fear of Everything 5.9
Jellyfish Eyes 5.7
The 33 7.2
The Last Man on Earth 6.0
Papadopoulos & Sons 6.1
Computer Chess 6.3
Le grand soir 5.9
Radio Rebel 6.3
Redemption Trail 7.6
Either Way 6.7
Devoured 5.4
No Good Deed 5.6
Pastorela 6.3
Banshee Chapter 5.5
The Kitchen 5.0
Monsieur Lazhar 7.5
Scenic Route 6.6
The Wind Rises 7.8
Dawn Rider 4.8
Forever's End 5.5
Spinning Plates 7.1
Hindsight 6.4
Catatan (Harian) si Boy 7.3
Things from Another World 5.4
Guardians of the Galaxy 8.1
Nuit #1 6.4
The Smurfs 2 5.4
All Is Lost 6.9
Closer to the Moon 7.7

105
Journey to the West 6.8
Camille Claudel 1915 6.5
Back to Stay 6.1
Diary of a Wimpy Kid: Dog Days 6.4
A One-Way Trip to Antibes 6.0
Mama 6.2
Sun Don't Shine 6.3
The Unspeakable Act 5.9
A Christmas Wedding Tail 4.5
El aèo del tigre 5.9
Non-Stop 7.0
Identity Thief 5.7
12 Years a Slave 8.1
Bumblefuck, USA 4.6
War of the Arrows 7.2
Blind 6.9
Smiley 3.5
Blue Caprice 6.0
Druid Peak 7.3
Justice League: Doom 7.5
The Man from the Future 7.2
Deadly Sisters 5.5
Tom and Jerry & The Wizard of Oz 6.5
A Better Life 6.6
Century of Birthing 7.1
The Tsunami and the Cherry Blossom 7.7
The Reluctant Fundamentalist 6.9
Downloaded 6.8
Laggies 6.4
The Last Exorcism Part II 4.0
Girls Against Boys 4.8
Shun Li and the Poet 7.3
You Are the Apple of My Eye 7.8
Mann tut was Mann kann 6.0
And They Call It Summer 4.6
Mato Sem Cachorro 6.0
Flicka: Country Pride 6.0
Grand Piano 5.9
The Gambler 6.0
Beauty Is Embarrassing 7.5
Expecting 5.1
The Pact 5.8
Steel 5.5
The Golden Dream 7.7
Inside Llewyn Davis 7.4
Penance 7.2
Doppelgènger Paul 6.8
Islands 6.3

106
Last Call at the Oasis 7.3
New Kids Nitro 5.9
Night Moves 6.0
Real Playing Game 4.2
Rose 7.6
The Story of Film: An Odyssey 8.3
A Glimpse Inside the Mind of Charles Swan III 4.8
The End 4.9
Men to Kiss 4.9
8:46 6.1
Mardock Scramble: The Second Combustion 6.2
Old Fashioned 5.7
Italy: Love It, or Leave It 6.5
Glen Campbell: I'll Be Me 8.0
Synchronicity 6.7
Watchers of the Sky 6.7
The Backwater Gospel 7.8
Europa Report 6.5
Diana Vreeland: The Eye Has to Travel 7.4
Gloriously Wasted 4.3
Rust and Bone 7.5
Side Effects 7.1
Age of Uprising: The Legend of Michael Kohlhaas 6.1
Ramin 7.6
80 Millions 6.7
Arcadia 6.1
The Lesser Blessed 6.1
A Bigger Splash
The Foster Boy 7.3
The Railway Man 7.1
Bertsolari 7.0
Cosimo and Nicole 6.3
Gentlemen 6.2
13 Sins 6.3
No 7.4
Manborg 5.7
Muhammad Ali's Greatest Fight 6.8
La vida precoz y breve de Sabina Rivas 6.8
Postman Pat: The Movie 4.6
Courage 6.8
Sister 7.1
King Kelly 5.1
The Road 5.6
Something from Nothing: The Art of Rap 7.1
Hello I Must Be Going 6.2
Smashed 6.8
Laddaland 6.3
A Band Called Death 7.5

107
Web Junkie 6.3
Bablo 6.5
Mistletoe Over Manhattan 6.1
The Longest Week 5.4
From Above 6.2
Anytime, Anywhere 7.9
Dragons: Gift of the Night Fury 7.6
The Strange History of Don't Ask, Don't Tell 7.4
Tumult 7.2
Any Day Now 7.5
Tale of a Forest 6.9
The Third Half 8.0
Gun Hill 6.9
Border Run 4.2
Shanghai Calling 6.3
Silenced 7.9
Populaire 6.9
Palme 7.7
Lycka till och ta hand om varandra 6.3
Wonder Women! The Untold Story of American Superheroines 7.5
Temptation: Confessions of a Marriage Counselor 4.8
Ultrasonic 7.0
Open Grave 6.3
Scarecrow 4.1
Super Demetrios 6.5
Business Man 7.2
It's in the Blood 4.7
Fanatics 6.2
Soundbreaker 7.3
Shanghai 7.3
Stockholm East 6.1
The King Is Dead! 5.5
Cottage Country 5.5
The Client 7.0
The Other Son 7.4
Still Mine 7.4
Saheb Biwi Aur Gangster 7.2
Shining Night: A Portrait of Composer Morten Lauridsen 8.8
To the Arctic 3D 6.5
The Suspect 5.7
An Oversimplification of Her Beauty 6.0
Lad: A Yorkshire Story 8.1
The Invisible Front 8.1
J.A.C.E. 6.9
The Invisible Men 7.0
The Substance: Albert Hofmann's LSD 7.0
My Way 6.9
The Worst Week of My Life 5.7

108
Teacher of the Year 5.4
Toad Road 5.1
Ethel 7.8
Escape 6.1
Aya of Yop City 6.5
Blackbird 7.1
Sleepwalk with Me 6.8
Zarafa 6.7
009 Re: Cyborg 5.9
Of Snails and Men 7.3
Key of Life 7.4
It's Such a Beautiful Day 8.4
Herman's House 6.1
Hansel & Gretel Get Baked 4.3
Her Master's Voice 7.5
Armed Response 5.2
May I Kill U? 5.4
Looking for Maria Sanchez 7.3
Nameless Gangster: Rules of the Time 7.2
Hannah's Law 5.0
Rat King 5.2
Ballroom Dancer 7.2
The Best Man Holiday 6.7
A Dark Truth 5.6
Trouble with the Curve 6.8
Ashley 5.5
Terms and Conditions May Apply 7.4
The Imitation Game 8.1
The Scapegoat 7.2
Eat Sleep Die 6.6
Unbowed 6.8
The Temple 8.2
Lovely Man 7.0
Starship Troopers: Invasion 5.9
Amen 5.6
The King of Pigs 6.6
Big Game 5.5
Curfew 7.9
Downeast 6.9
Call Me Kuchu 7.6
Rising from Ashes 7.3
The Hijack That Went South 5.5
Shell 6.4
The Atomic States of America 6.3
Big Boys Gone Bananas!* 7.6
Of Two Minds 6.8
My Straight Son 7.5
Everyone's Going to Die 7.0

109
Loves Her Gun 4.7
Treading Water 6.1
Promised Land 6.6
Dead Europe 5.4
What Richard Did 6.3
Jupiter Ascending 5.5
Frozen Planet 9.2
Escape Fire: The Fight to Rescue American Healthcare 7.1
Home 7.5
When Day Breaks 7.2
The Returned 5.9
Fort Bliss 6.3
From Dad to Son 6.9
El Nièo 6.5
Hours 6.5
Runoff 5.5
Much Ado About Nothing 7.2
Dead Man's Burden 5.3
The Easy Way Out 5.2
Haute Cuisine 6.4
Mad Ship 6.2
Mother of George 6.2
Svend 7.5
Seal Team Six: The Raid on Osama Bin Laden 5.6
Blowfish 7.0
L 5.4
Inside Out 8.6
Dumb and Dumber To 5.8
McFarland, USA 7.5
Hit and Run 6.1
Pieces of Talent 6.1
Ice Age: A Mammoth Christmas 6.5
Anton Corbijn Inside Out 7.1
Knight of Cups 7.1
Spring Breakers 5.3
The Physician 7.2
The Patrol 4.2
Artificial Paradises 6.5
I Do 6.5
The Girl and Death 6.3
Tammy 4.8
Emperor 6.5
Adore 6.2
Dawn of the Planet of the Apes 7.7
Radiostars 6.0
A Common Man 4.7
Amor? 6.7
V/H/S 5.8

110
Into the Storm 5.8
Deadline 7.7
Flicker 5.8
The Hunt 8.3
Mèbius 6.1
The Taste of Money 5.8
Tepenin Ardi 7.2
Bad Hair Friday 6.9
Diana 5.5
Schutzengel 5.8
The Practice of Beauty 7.3
Unter Umstènden verliebt 6.3
Vietnam in HD 8.2
Kings Point 6.7
Paranormal Activity 4 4.6
Stateless Things 6.3
Transformers: Age of Extinction 5.8
Raze 5.1
Mea Maxima Culpa: Silence in the House of God 8.0
For No Good Reason 6.9
Comme des frères 6.4
Monica Z 7.0
Thale 5.6
Under African Skies 7.6
Louis C.K.: Live at the Beacon Theater 8.4
This Ain't California 7.3
The Inevitable Defeat of Mister & Pete 7.5
Wild Horse, Wild Ride 7.2
Victor and the Secret of Crocodile Mansion 6.2
Elsa & Fred 6.5
The 100-Year-Old Man Who Climbed Out the Window and Disappeared 7.1
Death of a Man in the Balkans 7.4
The Wee Man 5.9
Walesa: Man of Hope 6.6
The Woman Who Wasn't There 6.8
Ginger & Rosa 6.3
The Taiwan Oyster 6.0
Vysotskiy. Spasibo, chto zhivoy 6.7
Beduin 6.6
Ping Pong 7.2
The Final Girls 7.5
Special ID 5.5
Let the Fire Burn 7.9
Maximum Conviction 4.9
Pixels 5.5
Shock Head Soul 5.5
Nailbiter 4.3
Little Black Spiders 6.2

111
We're Not Broke 7.2
Father's Chair 6.7
Beasts of the Southern Wild 7.3
Abendland 7.0
Charles Bradley: Soul of America 7.6
The Last Elvis 7.0
Searching for Sugar Man 8.2
The Queen of Versailles 7.1
San Andreas 6.4
Stitches 5.7
The Stone Roses: Made of Stone 7.2
Prora 7.5
Mockingbird Lane 7.6
These Birds Walk 6.9
West of Memphis 7.9
The Mule 6.3
Graceland 6.7
Almost 18 6.2
Zaytoun 6.6
The Bling Ring 5.6
Life's a Breeze 6.3
The Girl 6.2
The Gruffalo's Child 6.9
I Declare War 6.0
The Color of Time 4.7
Exit Elena 7.0
Electrick Children 6.9
Estamos Juntos 5.6
Mass Effect: Paragon Lost 5.9
Wolf Children 8.2
Saving Face 7.9
Saving Mr. Banks 7.5
Stalled 4.7
The Pretty One 6.3
Two Night Stand 6.4
Xingu 7.1
Stars Above 6.5
Le monde doit m'arriver? 7.9
Umbkotid 6.0
Muirhouse 4.5
Vazhakku Enn 18/9 8.0
Helter Skelter 6.3
Speed: In Search of Lost Time 6.8
Snow in Paradise 4.5
Das Leben ist nichts fèr Feiglinge 6.7
The Extreme Tragic Story of Celal Tan and His Family 6.5
My Grandfather's People 8.0
Renoir 6.5

112
Two Hundred Thousand Dirty 7.1
A Story of Yonosuke 7.8
The Pervert's Guide to Ideology 7.6
Subramaniapuram 7.7
Tabu 7.3
Rommel 6.4
Adam and Dog 6.9
Scooby-Doo! Music of the Vampire 6.5
Dancing on the Edge 7.4
Wagner's Dream 7.4
Turning Tide 6.3
Drug War 7.0
Fear Clinic 5.6
In Fear 5.5
Let It Shine 6.5
Batman: The Dark Knight Returns, Part 2 8.4
Tracks 7.2
Getaway 4.4
The Men Who Built America 8.6
Things We Do for Love 6.0
Southwest 7.3
Finding Mr. Right 6.4
Bad Words 6.7
Horrible Bosses 2 6.4
St. Vincent 7.3
Empire State 5.2
Calm at Sea 6.6
Nightfall 6.5
Smè citroner gula 6.0
The Deposit
Maps to the Stars 6.3
Life in a Fishbowl 7.7
Metallica Through the Never 7.2
The Art of the Steal 6.3
All About My Wife 6.6
The Wooden Bridge 5.7
To Be Takei 6.9
Spirit 7.4
Humano 8.0
The Longest Daycare 7.3
Highway of Tears 8.7
As It Is in Heaven 7.5
The End of Time 5.8
For a Woman 6.4
Carmina or Blow Up 6.3
Caesar Must Die 7.3
The Monuments Men 6.1
The Search 6.7

113
We Are Legion: The Story of the Hacktivists 7.4
The Rocket 7.4
Aujourd'hui 6.4
Barbara 7.1
Cut! 6.4
Empire of Dirt 7.0
Gideon's Army 7.7
I Will Follow You Into the Dark 4.5
The Kings of Summer 7.2
What's in a Name? 7.3
American Sniper 7.4
90 Minutes 6.2
Crowsnest 3.8
Into the Woods 6.0
Remote Area Medical 5.8
The Strange Case of Wilhelm Reich 5.8
Im Sommer wohnt er unten 8.4
Shahid 8.4
Fanie Fourie's Lobola 6.5
Frost 3.7
Houston 5.4
Ritual 5.4
Legenda No. 17 7.8
Reis e Ratos 4.8
The Old Man 7.1
The Dragonphoenix Chronicles: Indomitable 6.6
Silent Ones 6.7
The Fruit Hunters 6.6
Boy Eating the Bird's Food 6.5
Premature 5.9
Earth to Echo 5.8
Song One 5.8
Gotti 7.3
Isdraken 6.0
Dormant Beauty 6.3
The Purge 5.6
Beside Still Waters 6.4
So It Goes 6.8
The Little Ghost 5.8
Cold War 6.7
Battle Ground 4.8
Houston 5.5
It Boy 6.4
Landmine Goes Click 7.6
Lions 5.4
Child's Pose 7.5
Pernicious 5.8
Faro 5.7

114
Lost and Beautiful 6.6
Patch Town 5.4
Little Monsters 4.7
Neighboring Sounds 7.1
Safelight 5.8
Living 7.3
Stage Fright 5.2
A Promise 5.7
Sex, Drugs & Taxation 6.6
The Towrope 6.7
Grown Ups 2 5.4
The Look of Love 6.0
Red Knot 5.1
The Dark Horse 8.0
Gulf Stream Under the Iceberg 6.5
Short Stories 7.1
Above Dark Waters 6.6
The Counselor 5.4
Hammer of the Gods 4.5
History of the Eagles Part One 8.1
Finding Fela! 6.8
è moi seule 6.0
About Time 7.8
Kokowèèh 2 5.5
The Disciple 6.7
The Almost Man 5.9
The Neighbors 6.4
Prince Avalanche 6.4
The Elevator: Three Minutes Can Change Your Life 4.4
Mig èger ingen 6.8
Teenage 6.4
Les manèges humains 6.5
Les petits princes 6.2
Barbie in a Mermaid Tale 2 5.6
Brasserie Romantiek 5.8
Chainsaw Maid 6.9
Coldwater 6.4
The Judgement 7.0
Vishwaroopam 8.8
Rat Fever 7.2
Fuck Up 5.8
The Hot Flashes 5.0
The Other Woman 6.0
Wildlike 7.2
Somm 7.0
The Devil's Carnival 6.5
Room 514 6.3
Generation Iron 7.2

115
One Mile Away 6.6
Eyjafjallajèkull 5.4
Concepcièn Arenal, la visitadora de cèrceles 7.3
The Brain Man 6.6
Move 6.7
Our Little Differences 6.1
Vanishing Waves 6.1
Aftermath 7.3
Poka noch ne razluchit 5.9
You Are God 6.7
E Aè… Comeu? 5.8
Before Midnight 8.0
Transcendence 6.3
Berserk: The Golden Age Arc I - The Egg of the King 7.7
God Is the Bigger Elvis 7.1
Lullaby 6.1
Liza, the Fox-Fairy 8.2
Jimmy P. 6.0
Pecoross' Mother and Her Days 7.3
Hilda 6.1
Zhauzhèrek myng bala 6.6
Amma Lo-Fi 7.4
Daddy's Little Girl 5.7
Confine 3.8
Half of a Yellow Sun 6.1
Hiver nomade 7.6
Inequality for All 8.0
The Nun 6.4
Little Thirteen 5.4
Madea's Witness Protection 4.7
Paulette 6.6
Goliyon Ki Rasleela Ram-Leela 6.2
Katy Perry: Part of Me 5.9
A Hijacking 7.2
Reaching for the Moon 7.0
Louder Than Bombs 6.7
Newlyweeds 5.7
Ustad Hotel 8.2
Fill the Void 6.7
Seymour: An Introduction 7.7
Return to Nim's Island 5.0
Shepard & Dark 6.3
The Noble Family 7.4
Draft Day 6.8
Sweetwater 6.2
Complicit 6.4
Superman vs. The Elite 7.1
Demons 7.2

116
Walker 7.1
Family Way 6.7
Jaurès 6.5
The Landlords 6.1
Insidious: Chapter 2 6.6
The Orheim Company 7.0
Il mundial dimenticato 7.6
Omertè 6.0
Enter the Dangerous Mind 4.9
Don Jon 6.6
Wer 5.9
Spieltrieb 5.1
Curse of Chucky 5.6
Rio 2096: A Story of Love and Fury 7.1
The Man in the Orange Jacket 5.5
A Killer Among Us 5.7
Hit & Miss 7.9
Canopy 4.9
Sand Castles 8.2
Benigni 6.5
Calvary 7.4
Stay 5.6
The Internship 6.3
Sparks 6.1
An Amish Murder 6.3
A Castle in Italy 5.6
Dear White People 6.3
The Quiet Ones 5.1
Geography Club 6.5
Mystery Road 6.5
Geography Club 6.5
White Bird in a Blizzard 6.4
American Winter 7.1
Mushrooming 7.0
Think Like a Man Too 5.7
Political Animals 7.8
White Rabbit 6.0
An American Ghost Story 4.4
Thesis on a Homicide 6.3
Under the Rainbow 6.0
Restless 7.2
Horsehead 4.7
Alcan Highway 6.8
I'm So Excited! 5.6
Swung 5.9
Daddy, I'm a Zombie 4.4
A Haunted House 5.1
Guardians of the Galaxy 8.1

117
Bwakaw 7.2
Chernobyl Diaries 5.0
I Give It a Year 5.7
Paziraie sadeh 7.1
Big Hero 6 7.9
The Cut 6.0
The History of Future Folk 7.4
The Source Family 6.9
Contest 5.5
The Kiyosu Conference 6.9
The Bible 7.4
An Honest Liar 7.6
Maattrraan 5.6
Rentaneko 7.1
Kano 8.0
2016: Obama's America 5.1
Marvel One-Shot: Item 47 6.7
2 + 2 6.3
The Film Critic 6.1
Zulu 6.7
Sonja and the Bull 7.2
Araf/Somewhere in Between 6.3
SAGA: Curse of the Shadow 4.9
The Old Man 7.1
Dark Was the Night 5.5
Territory 6.4
Macropolis 6.7
Family United 6.3
Jack 6.8
Soar Into the Sun 6.1
Camille Rewinds 6.3
Consuming Spirits 7.8
Aiyyaa 4.3
Do I Have to Take Care of Everything? 6.7
Hitched for the Holidays 6.5
Metal Brothers 4.6
Two Men in Town 5.6
Eega 8.0
Fading Gigolo 6.2
One. Two. One 7.2
The World Before Her 7.5
Villegas 6.7
Wadjda 7.6
Tapia 7.6
Differently, Molussia 7.1
Chasing Beauty 6.1
A Five Star Life 6.3
Dragon Age: Dawn of the Seeker 5.9

118
How to Meet Girls from a Distance 6.0
The Gilded Cage 7.4
The Book of Life 7.3
Spud 2: The Madness Continues 6.2
Halo 4: Forward Unto Dawn 7.1
Long Way North 8.0
The Hollow Crown 8.4
More Than Honey 7.5
Convenience
Soar Into the Sun 6.1
The Maid's Room 4.5
Dragon Ball Z: Battle of Gods 7.3
A Short History of Decay 6.1
The Raid 2 8.0
Drinking Buddies 6.1
Sweet Micky for President 8.8
The Lifeguard 5.7
Magical Universe 7.7
Gone Girl 8.2
Magic Mike XXL 6.3
These Final Hours 6.6
Puss in Boots: The Three Diablos 7.1
Museum Hours 6.9
George Lopez: It's Not Me, It's You 5.6
Mission: Sputnik 6.2
Inori 7.0
Devil's Pass 5.7
True Story 6.3
Bad Milo 5.7
Eat with Me 6.2
Vegetarian Cannibal 7.2
Must Have Been Love 5.7
Redirected 6.8
A Little Game 6.5
The Man Who Saved the World 7.9
S#x Acts 6.2
American Dreams in China 7.1
The Grand Budapest Hotel 8.1
Forgotten 5.8
The Brussels Business 6.8
The SpongeBob Movie: Sponge Out of Water 6.1
Real 5.8
21 Ways to Ruin a Marriage 6.3
A Christmas Story 2 3.3
A Magnificent Haunting 6.6
Body Fat Index of Love 5.6
Vanishing Pearls: The Oystermen of Pointe a la Hache 7.0
Muppets Most Wanted 6.5

119
The Possession of Michael King 5.7
Our Nixon 6.6
Platinum Data 5.6
The Samurai That Night 6.4
The Book Thief 7.6
Supermarket 5.4
OMG: Oh My God! 8.2
Mary and Martha 6.8
OMG: Oh My God! 8.2
Sleeping with the Fishes 6.0
The Right Kind of Wrong 6.2
Man from Reno 7.1
Mary and Martha 6.8
It's Just a Ride 7.5
Bitch Hug 6.0
The Conductor 6.5
Ego 6.2
Girl Walk: All Day 7.9
On My Way 6.4
Along the Roadside 7.2
Once Upon a Time in Shanghai 6.9
Design of Death 6.4
Every Blessed Day 6.8
Road to Ninja: Naruto the Movie 7.8
The Wind Rises 7.8
Juvenile Offender 6.6
The Billionaire 7.9
The Canyons 3.9
22 Jump Street 7.1
Lesson of the Evil 6.7
First Winter 4.7
Frozen 7.6
In a World… 6.7
Informant 6.1
Mansome 5.4
Souls of Zen 8.5
Hunting Elephants 6.5
Tai Chi Hero 6.2
Concussion 5.7
Head Over Heels 2 5.8
Melody 6.9
The Legend of Sarila 5.3
Whitewash 5.8
Love Is in the Air 6.3
Suzanne 6.7
La cinquième saison 7.0
Killing Lincoln 6.8
A Special Day 5.5

120
Pieta 7.2
Shootout at Wadala 5.8
Queen of Montreuil 6.4
All About You 5.8
Olympus Has Fallen 6.5
My Beautiful Country 7.1
We Are the Freaks 4.4
The Selfish Giant 7.3
23 Blast 6.1
Gabbar Singh 7.2
Mandela: Long Walk to Freedom 7.1
The Green Prince 7.1
Wild 7.2
One Eyed Girl 7.7
A Night in Old Mexico 5.8
Traffickers 6.4
Born to Hate… Destined to Love 6.6
We Are What We Are 5.8
Singham Returns 5.8
The Gatekeepers 7.6
Afflicted 6.3
Fresh Guacamole 7.3
Birders: The Central Park Effect 7.4
The Hobbit: The Battle of the Five Armies 7.5
Aim High in Creation 7.0
Healing 6.7
La vida inesperada 6.5
Grantham & Rose 7.7
Reincarnated 6.2
Death of a Shadow 7.2
Homefront 6.5
Batman: The Dark Knight Returns, Part 1 8.0
Casting Couch 4.9
Afternoon Delight 5.8
The Real Miyagi 9.3
Imagine I'm Beautiful 5.4
Me, Myself and Mum 6.6
The Great Passage 7.5
The Hour of the Lynx 6.1
American Courtesans 6.8
For Those in Peril 6.3
Enemy 6.8
Big Easy Express 7.5
Beauty and the Beast 6.4
The Better Angels 6.0
The Machine 6.1
Mantervention 4.5
White Tiger 6.0

121
Echo Planet 6.0
Game Over 6.8
Margarita 6.2
Margarita 6.2
Out in the Dark 7.6
The Final Member 6.5
The Grand Seduction 7.0
Calloused Hands 8.3
Moms Mabley: I Got Somethin' to Tell You 8.2
Seeking Asian Female 7.4
Uncanny 7.0
The Spy 5.3
If You Build It 6.7
Fifty Shades of Grey 4.2
The Deflowering of Eva Van End 6.6
Shahid 8.4
The Notebook 6.9
Beyoncè: Life Is But a Dream 6.3
Cyanide 6.1
Heiter bis wolkig 6.8
In the Fog 6.7
Liz in September 7.1
Open Up to Me 6.8
Strangerland 5.3
Teen Beach Movie 5.8
Girl Vs. Monster 5.7
The Captive 5.9
The Identical 5.0
Offline 7.1
Liv & Ingmar 7.4
The Big Ask 4.8
The Weight of the Nation 7.4
As One 7.2
Asura 6.7
The Formula 2.8
Hank and Asha 6.3
Wrestling Queens 5.4
Anchorman 2: The Legend Continues 6.4
Julayi 7.1
Village People 5.5
The Girl from Nowhere 6.3
Blind Detective 6.4
The Spirit of '45 7.0
The Spirit of '45 7.0
Deepsea Challenge 3D 6.7
Everybody's Got Somebody… Not Me 7.0
Somewhere in Palilula 7.2
7 Boxes 7.2

122
The Expendables 3 6.1
The Zero Theorem 6.1
Cas & Dylan 6.7
Fruitvale Station 7.5
Madame Bovary 5.7
Qissa: The Tale of a Lonely Ghost 6.5
A Magnificent Haunting 6.6
White House Down 6.4
Blue Jasmine 7.3
El rostro 5.3
The Wild Ones 5.9
She Made Them Do It 6.2
Inch'Allah 6.9
Architecture 101 7.3
Cinemanovels 5.2
PK 8.3
Gold 6.3
Finsterworld 6.9
Letters to Sofija 7.4
Aliyah 6.2
Ape 5.4
East Side Sushi 8.3
The Last of the Unjust 7.0
Juvenile Offender 6.6
Come Out and Play 4.7
Cine Hollièdy 6.8
Run & Jump 6.2
No Place on Earth 6.9
The Boy in the Mirror 6.5
Amiche da morire 6.2
The Dead and the Living 5.9
A Patriotic Man 6.3
Liar's Dice 7.1
Heart of a Lion 7.1
Third Person 6.4
Kadal 5.7
Parkland 6.3
Leprechaun: Origins 3.3
The Rover 6.4
Unforgiven 7.1
Shield of Straw 6.3
Frances Ha 7.4
Open Heart 6.8
Third Person 6.4
The Lunchbox 7.8
Revolution 7.4
Flu 6.7
Nude Area 6.4

123
The Dinner 6.1
1,000 Times Good Night 7.1
I am Von Hèfler Variation on Werther 6.2
Les gamins 6.2
McCullin 8.1
Croczilla 4.1
Barefoot 6.6
Cutie and the Boxer 7.2
Bhaag Milkha Bhaag 8.4
Ostwind - Zusammen sind wir frei 6.9
An American Terror 5.5
Bound by Flesh 6.4
Jobs 5.9
Rio 2 6.4
Underground: The Julian Assange Story 6.8
The Dust Bowl 8.1
Honey 6.7
Zanjeer 3.2
Bridegroom 8.1
The Snow on the Pines 6.9
All the Wilderness 5.8
I Am Big Bird: The Caroll Spinney Story 7.2
Lucia 8.5
Berserk: The Golden Age Arc III - The Advent 7.9
Berserk: The Golden Age Arc II - The Battle for Doldrey 7.9
Daylight 7.0
Blue Ruin 7.1
Squatters 5.7
Two Years at Sea 6.8
Underground: The Julian Assange Story 6.8
Linsanity 7.4
Three Sisters 7.1
Barefoot 6.6
Antarctica: A Year on Ice 7.6
Five Star 5.3
Cheatin' 7.3
Parviz 7.3
Saheb Biwi Aur Gangster Returns 6.9
Hotell 6.4
Ragnarok 5.9
Het Bombardement 3.8
The Summit 6.9
El bosc 5.4
A Thirsty World 7.9
Runner Runner 5.6
Touchy Feely 5.3
Kid 6.7
Yardbird 7.4

124
Stories We Tell 7.6
Lost River 5.8
Made in America 4.7
Thank You a Lot 7.2
15 Years and One Day 5.8
Leaving on the 15th Spring 7.5
Assault on Wall Street 6.1
Cat Shit One 7.1
Minuscule: Valley of the Lost Ants 7.1
After Lucia 7.2
Eskil & Trinidad 5.6
Fame High 6.4
Touch of the Light 7.5
Horses of God 7.3
Need for Speed 6.6
Mystery 6.3
Pioneer 6.0
Space Station 76 4.9
Three Worlds 6.5
When I Saw You 6.4
Balancing Act 6.9
Milius 7.5
Crossfire Hurricane 7.4
Short Term 12 8.0
Baby Blues 4.9
Artifact 8.2
Secrets of War 6.8
Camp 6.7
Balancing Act 6.9
Moomins on the Riviera 6.3
The Neighbors 6.4
Kick 5.6
Oh Willy… 7.0
Harry Dean Stanton: Partly Fiction 7.3
Mord in Eberswalde 7.3
The Best of Men 8.1
Metalhead 7.1
BFFs 5.2
Liz & Dick 4.0
One Piece Film Z 8.0
The Last Light 3.6
Almost Married 4.2
Venus and Serena 6.1
The Cabining 6.0
Deliver Us from Evil 6.2
I Belong 6.7
Violet 7.0
Special 26 7.9

125
Scorpion in Love 5.8
8-Ball 6.3
Instructions Not Included 7.6
Meet the Patels 8.1
Avenged 5.7
Sofia's Last Ambulance 7.5
When Jews Were Funny 5.7
Cruel & Unusual 6.6
Monster Pies 6.6
Gone Fishing 6.5
Approaching the Elephant 7.2
Stockholm 7.0
Words and Pictures 6.6
Winter of Discontent 7.0
Jamie Marks Is Dead 5.6
Fed Up 7.7
The Rambler 4.6
Compulsion 4.4
Life Itself 7.9
Joe 6.9
Jacky in the Kingdom of Women 5.9
The Sacrament 6.1
Only Daughter 7.0
Pretty Butterflies 6.6
D-Day 7.2
Bian jing feng yun 6.8
Rhymes for Young Ghouls 6.8
Sunrise 6.7
American Revolutionary: The Evolution of Grace Lee Boggs 8.0
Una piccola impresa meridionale 6.2
Vic + Flo Saw a Bear 6.4
The Capsule 6.2
The Education of Mohammad Hussein 5.4
The Damned 5.2
Dinotasia 5.5
The Liberator 7.1
The Special Need 7.5
The Girl on the Train 4.4
Kidnapped for Christ 7.2
Ain't Them Bodies Saints 6.4
Oculus 6.5
Molly Maxwell 6.3
Paperman 8.3
Gasht-e ershad 5.6
Vergiss mein nicht 7.6
Cuban Fury 6.2
A Muse 6.7
It's Me, It's Me 6.1

126
Enough Said 7.1
Medeas 6.5
Shana: The Wolf's Music 5.8
The Unknown Known 7.0
Head Over Heels 7.5
Loitering with Intent 4.7
Le Week-End 6.3
I Am Breathing 7.1
Reality 7.0
Women's Day 6.0
Gabriel 6.4
Home 7.7
Too Late 7.5
A Heartland Christmas 7.3
Doomsdays 7.4
Still Life 7.4
The Weight of Elephants 6.6
Avengers: Age of Ultron 7.8
The Priest's Children 6.8
Thy Womb 7.0
It's Such a Beautiful Day 8.3
Coffee, Kill Boss 7.0
Cold Harbour 6.1
Farah Goes Bang 7.0
Twenty Feet from Stardom 7.4
Moon Man 6.2
Predestination 7.4
The Homesman 6.6
Growing Up and Other Lies 4.7
Les Invisibles 7.5
What If… 7.0
The Barkley Marathons: The Race That Eats Its Young 8.6
Susie's Hope 7.8
The Invitation 7.3
The Last Chance: Diary of Comedians 7.1
Tracers 5.5
Trashed 7.5
Richard Pryor: Omit the Logic 7.3
De Marathon 7.5
The Devil's Violinist 6.1
Anomalisa
Jimi: All Is by My Side 5.6
The Reunion 7.0
My Sweet Orange Tree 7.1
Der Bau 5.4
Felony 6.1
Carol 6.9
Ping Pong Summer 5.3

127
Desert Dancer 5.7
The Green Inferno 5.7
Kokoko 6.7
7th Floor 5.8
Altman 6.8
Belle 7.4
The Eternal Zero 7.3
The Family 6.3
The Past 7.9
The Grand Budapest Hotel 8.1
The Heat 6.6
Ushi Must Marry 3.0
Copperhead 5.4
Witching and Bitching 6.4
Concrete Night 6.5
Stand Clear of the Closing Doors 6.7
A Bit of Bad Luck 7.2
Walking the Camino: Six Ways to Santiago 7.3
Ek Thi Daayan 5.6
The Human Factor 5.0
B.A. Pass 6.6
Killers 6.5
Why Don't You Play in Hell? 7.3
Open Windows 5.2
The Amazing Catfish 7.0
Santa Paws 2: The Santa Pups 4.9
Black & White Episode 1: The Dawn of Assault 6.3
The Human Scale 7.2
Frequencies 6.9
The Wolfpack 7.1
Inner Worlds, Outer Worlds 8.6
36 7.1
Filmistaan 7.3
Rubinrot 6.1
Three Many Weddings 6.3
Like the Wind 6.1
Red Obsession 6.7
Sexo fècil, pelèculas tristes 5.9
12 O'Clock Boys 6.4
Late Phases 5.9
Paris è tout prix 5.6
The Princess of Egypt 6.1
Boy Upside Down 6.0
The Challenger Disaster 7.3
Palmipèdarium 6.6
Butterfly Girl 7.9
Mardock Scramble: The Third Exhaust 6.5
Gloria 6.7

128
Easy Money III: Life Deluxe 6.3
Una famiglia perfetta 6.5
Creep 6.2
G.B.F. 6.0
Shed No Tears 7.2
The Ghost and the Whale
Hanna's Journey 6.3
After Tiller 7.4
Philomena 7.6
Meet the Hitlers 6.9
Best Kept Secret 7.5
Les coquillettes 4.7
Mother, I Love You 7.6
Dead Man Talking 7.0
The Invoking 2.9
Antboy 5.3
Exhibition 5.5
Goodbye to All That 5.2
Bank$tas 4.5
The Keeper of Lost Causes 7.1
Chuck Norris vs Communism 8.1
Ring of Fire 5.9
Anything for Alice 5.3
The Boy 5.9
Girl Rising 7.2
Molly Moon and the Incredible Book of Hypnotism 7.8
B-Side 6.8
Toy Story of Terror 7.6
Taken 3 6.0
Next Goal Wins 7.9
Bianca come il latte, rossa come il sangue 6.1
The Genius of Marian 7.6
The Wizards Return: Alex vs. Alex 6.6
I Am Thor 8.1
V/H/S/2 6.1
TINY: A Story About Living Small 6.6
Gone Too Far 5.3
Drinking Buddies 6.1
Son of a Gun 6.5
Clouds of Sils Maria 6.8
All That I Am 6.1
Compared to What: The Improbable Journey of Barney Frank 4.7
The Last Tycoon 6.7
Bears 7.4
The Other Shore 7.7
Copenhagen 7.3
In the Name of the Son 6.4
Something, Anything 6.3

129
Happy New Year 5.5
Man Down
The Escape 7.3
My Mom Is a Character 6.7
Coming to Terms
Licks 7.0
The Single Moms Club 5.0
And So It Goes 5.7
Human Capital 7.3
The Short Game 7.5
Heavenly Shift 7.6
Left Behind 3.1
Beyond the Edge 6.7
Confession of Murder 7.0
Don't Cry, Mommy 6.4
Regret! 7.2
Oxyana 7.1
Get on Up 6.9
Paranormal Activity: The Marked Ones 5.0
Mr. Turner 6.9
The Last Five Years 6.0
Lawrence & Holloman 8.2
Attila Marcel 7.0
Elena 7.7
Our Vinyl Weighs a Ton: This Is Stones Throw Records 7.5
We Always Lie to Strangers 7.4
Manhunt 6.9
Delhi Dance 7.1
Grand Masti 4.2
West 6.6
Field of Lost Shoes 5.6
Palo Alto 6.3
The Grump 7.0
Which Way Is the Front Line from Here? The Life and Time of Tim Hetherington 7.7
Doc of the Dead 6.4
Sunshine on Leith 6.5
Pussy Riot: A Punk Prayer 7.0
Stockholm, Pennsylvania 6.2
The Pirate Fairy 6.6
5 to 7 7.0
Ti mene nosis 7.3
Mister John 5.7
The Keeping Room 7.1
A.C.A.B. All Cats Are Brilliant 6.7
The Trials of Muhammad Ali 7.1
The Fifth Wheel 6.5
May in the Summer 5.8
Muscle Shoals 7.7

130
Die Welt 6.3
Min sèsters bèrn i Afrika 4.5
Aloft 5.6
Stockholm Stories 6.0
Loving 6.9
Ip Man: The Final Fight 6.1
The Crash Reel 8.2
Spongebob Squarepants 4D Attraction: The Great Jelly Rescue 6.5
Don't Hug Me I'm Scared 7.3
Narco Cultura 7.3
Wolf 7.3
Soulmate 5.2
All Eyes and Ears
Good Ol' Freda 7.3
Me Him Her 6.8
Poor Us: An Animated History of Poverty 6.8
An Episode in the Life of an Iron Picker 6.8
Viva l'Italia 6.3
Where the Trail Ends 7.7
Frontera 6.5
Louis C.K. Oh My God 8.4
Cold Comes the Night 5.7
Helium 6.5
Jealousy 6.4
Puerta de Hierro, el exilio de Perèn 6.3
Kenau 6.5
The Dark Matter of Love 7.4
Rosenwald 7.8
Brave Miss World 7.2
Medora 7.4
Escobar: Paradise Lost 6.6
One Direction: This Is Us 4.0
They Are All Dead 5.9
Anna Nicole 5.4
Sequoia 6.6
20 Ft Below: The Darkness Descending 2.7
The Suicide Theory 6.2
Da geht noch was! 6.3
The Canal 5.9
1 8.0
Tales from the Organ Trade 7.4
Benji 7.4
See You Next Tuesday 7.4
The Mighty Angel 7.0
Shutter 7.6
Long Live Freedom 7.1
Miguel San Miguel 6.7
Rock the Casbah 6.6

131
A Fragile Trust: Plagiarism, Power, and Jayson Blair at the New York Times 6.8
The Russian Novel 6.8
The Little House 7.5
The Expedition to the End of the World 7.0
Love Is Blind 7.5
Risttuules 7.9
I Survived a Zombie Holocaust 4.7
Picas 6.2
Nebesnye zheny lugovykh mari 6.7
App 5.4
Smart Ass 5.9
Call Me Crazy: A Five Film 7.0
Soof 6.7
Something Good: The Mercury Factor 3.7
Miss Zombie 6.2
Life Inside Out 5.9
Brand New-U 5.8
The Concubine 6.3
The Enemy Within 6.8
Admiral 7.2
American Promise 6.8
Blackfish 8.1
Citizen Koch 6.4
Meru 8.3
Starship: Rising 2.1
Little Hope Was Arson 6.8
The Worst Christmas of My Life 5.2
Lasting 5.3
Wajma, an Afghan Love Story 6.9
Google and the World Brain 6.9
26 Years 6.6
The Legend of Barney Thomson 7.0
Ghadi 7.6
The Infinite Man 6.4
Documentarian 7.9
Spark: A Burning Man Story 6.2
The Casual Vacancy 6.6
An Unreal Dream: The Michael Morton Story 7.6
Matt Shepard Is a Friend of Mine 8.1
Maidentrip 7.5
Arrambam 7.5
Holiday 7.4
Plastic 6.0
Iceman 4.8
A Million Ways to Die in the West 6.1
The Last Survivors 5.2
Life According to Sam 8.0
Je suis supporter du Standard 5.4

132
Preggoland 5.5
Lilting 7.1
Quiet Riot: Well Now You're Here, There's No Way Back 7.9
The Town That Dreaded Sundown 5.6
Birdman: Or (The Unexpected Virtue of Ignorance) 7.8
The Devil's Path 7.2
Seoul Searching 7.5
Suddenly 3.6
BMF: The Rise and Fall of a Hip-Hop Drug Empire 6.1
White Reindeer 5.7
Boss 5.2
Onneli ja Anneli 5.6
Hal 6.9
Studio illegale 5.5
Gulaab Gang 6.2
The Bachelor Weekend 6.0
Cut Snake 6.7
Septic Man 4.2
Nobody's Daughter Haewon 6.8
The Tale of The Princess Kaguya 8.1
Traffic Department 7.5
Valentine Road 7.3
Krampus: The Christmas Devil 2.0
The Survivalist 7.5
La scelta 5.9
Life After Beth 5.7
Wolfskinder 6.6
Julia 4.4
Me and Earl and the Dying Girl 8.2
Whiplash 8.6
The Fault in Our Stars 7.9
Usain Bolt: The Fastest Man Alive 6.9
Avenged 5.4
Son of Mine 7.3
Twist of Faith 6.8
Pizza 8.1
The Strange Little Cat 6.6
Scooby-Doo! Mask of the Blue Falcon 6.9
Yes or No: Come Back to Me 7.1
The Garden of Words 7.6
Whatcha Wearin'? 6.8
Ban-chang-ggo 6.9
In the Courtyard 6.4
Lulu femme nue 6.5
Bridge and Tunnel 7.1
The Major 7.1
Tavarataivas 6.5
Maèna 6.5

133
Countdown 6.4
Quièn matè a Bambi? 5.6
Lenny Cooke 6.5
The Butterfly's Dream 8.0
Manhattan Romance
Tyler Perry's A Madea Christmas 4.5
Kevin Hart: Let Me Explain 6.7
Difret 6.8
Force of Execution 4.6
Virgin Mountain 7.7
'71 7.2
Umrika 6.8
City of Gold 7.8
Keeping Rosy 5.5
Leave to Remain 6.2
Marina 7.2
First Cousin Once Removed 7.4
Algorithms 6.4
Blind 7.0
The Blue Umbrella 7.7
Superman: Unbound 6.6
Jug Face 5.2
Jolly LLB 7.2
American Vagabond 6.7
Crimes Against Humanity 7.3
Holidaze 6.0
Bella Vita 8.2
Noble 6.8
Takedown: The DNA of GSP 7.6
Catch Me Daddy 6.7
Closed Curtain 6.8
The Giant King 5.9
The Activist 5.5
We Cause Scenes 7.0
Eltern 6.6
The Day That Lasted 21 Years 8.0
Tru Love 6.7
The Retrieval 6.5
Ghost in the Shell Arise: Border 1 - Ghost Pain 7.3
Tony Benn: Will and Testament 8.3
Tutti contro tutti 5.9
Shirley: Visions of Reality 6.5
Don't Go to the Reunion 4.1
September 6.4
Love Is Strange 6.7
The House at the End of Time 6.9
Queen of the Mountains 8.6
Penumbra 4.8

134
Mr. Kaplan 6.6
The Quiet Hour 6.6
The Plague 6.8
Metro 6.6
The Ghost Army 7.6
The Escape Artist 7.7
Monster High: Friday Night Frights 6.5
Matterhorn 7.1
Northwest 6.9
A Long and Happy Life 6.1
In the Name Of 6.5
Carmin Tropical 6.0
Senotaji 6.6
The Good Lie 7.4
Iron Man: Rise of Technovore 5.2
My Dog Killer 5.7
Whiplash 7.6
The Ghosts in Our Machine 7.9
Bang Bang Baby 6.2
The Eternal Return of Antonis Paraskevas 5.6
11.6 5.8
Buzzard 6.4
Commando 5.9
Victor Young Perez 6.3
Ku! Kin-dza-dza 6.0
Miracle in Cell No. 7 8.2
LFO 6.6
10%: What Makes a Hero? 5.0
An Adventure in Space and Time 8.3
UMMAH - Unter Freunden 6.4
It's Only Make Believe 6.4
Rabbit and Deer 8.7
What's Left of Us 5.2
Miss Julie 5.7
Ruined Heart: Another Lovestory Between a Criminal & a Whore 6.2
Time Lapse 6.4
Frau Ella 5.9
Youth 6.3
I Feel Sleepy 6.0
Love Games 7.0
Broken Glass Park 5.8
Silent Retreat 4.2
The Scopia Effect 4.4
Tom Dick & Harriet 6.0
Keep on Keepin' On 7.5
Ad Inexplorata
Dedh Ishqiya 7.3
In Order of Disappearance 7.2

135
The Smoke Seller 7.1
Hey Bartender 6.4
Call Girl of Cthulhu 4.7
Broadway Idiot 7.6
Kalervo Palsa ja kuriton kèsi 5.8
History of Fear 4.7
Het Vonnis 7.1
October Gale 5.1
Night at the Museum: Secret of the Tomb 6.3
Locke 7.1
Young Ones 5.9
Oliver's Deal 7.6
Fist of Jesus 7.1
Two Shots Fired 6.2
Saint Laurent 6.3
Yves Saint Laurent 6.2
Bonnie and Clyde 6.5
Life of a King 6.9
HK: Forbidden Super Hero 6.1
Burton and Taylor 6.5
AfterDeath 5.1
Peace After Marriage 6.3
Diary of a Chambermaid 5.7
Bonobo 7.4
Fury 7.6
Living Images 7.3
Miraculum 5.7
On the Job 7.0
The Riot Club 6.0
Ida 7.4
The King's Surrender 6.6
Blackhat 5.4
Honeymoon 6.3
Papusza 7.3
The Salvation 6.8
P-51 Dragon Fighter 3.1
Hide and Seek 6.1
Zeit der Kannibalen 7.2
Sharknado 3.3
Korso 5.3
What We Did on Our Holiday 6.9
Berkshire County 7.5
The Longest Ride 7.2
Fool's Day 8.4
Fifi Howls from Happiness 7.5
The Kill Team 7.0
Nobody Wants the Night 6.1
Mistaken for Strangers 7.3

136
Two Days, One Night 7.4
Desolate 6.9
Decency 6.4
Will You Still Love Me Tomorrow? 6.7
Two: The Story of Roman & Nyro 6.7
Pluto 6.6
Out of the Blue 6.1
Rosewater 6.6
Devil's Due 4.0
Kick-Heart 7.1
The One I Love 7.1
Winter Sleep 8.3
The Third Half 5.8
Code Black 6.7
Quantum Love 6.3
Na kathesai kai na koitas 6.2
My Man 6.7
Phoenix 7.2
So Young 6.4
Krot na more
The Life and Mind of Mark DeFriest 8.1
The Games Maker 5.6
Benvenuto Presidente! 6.1
Faith Connections 7.2
Solan og Ludvig - Jul i Flèklypa 7.0
Veronica Mars 6.8
The Perfect 46 6.9
Rigor Mortis 6.3
Antisocial 4.5
Pee Mak 7.4
WolfCop 5.5
Eadweard 7.4
Top Five 6.5
The Little Death 7.1
Jack Strong 7.2
America: Imagine the World Without Her 5.6
Way Beyond Weight 7.8
Transformers Prime Beast Hunters: Predacons Rising 7.5
The Interview 6.7
X/Y 4.1
Beloved Sisters 6.2
Love Building 7.1
Gasland Part II 7.7
Je fais le mort 5.8
Jibeuro ganeun gil 7.7
Bombay Talkies 6.8
The Hybrid 4.6
Darkness on the Edge of Town 8.0

137
Atlas Shrugged: Who Is John Galt? 4.4
Serial (Bad) Weddings 7.0
All of Me 7.6
Kingsman: The Secret Service 7.8
Leviathan 7.7
The Closed Circuit 6.8
No Thank You 5.8
Tokyo Tribe 6.6
Killing Kennedy 6.0
The Childhood of a Leader
When Animals Dream 5.8
Everything I Can See From Here 5.9
The Last Call 7.3
Furious 7 7.4
The Rise and Rise of Bitcoin 7.3
Future Shock! The Story of 2000AD 7.9
3 Hearts 5.8
Nothing Bad Can Happen 6.9
Carmina y amèn. 6.8
Deadly Virtues: Love.Honour.Obey. 4.8
Blood Punch 7.5
Fandry 8.0
Silenced 8.0
Hoovey 5.2
Hawking 7.3
Dr. Cabbie 6.7
Dead Snow 2: Red vs. Dead 7.0
1987 7.4
Crimi Clowns: De Movie 6.8
Grand Central 6.2
Fallen City 7.3
Across the River 5.6
Chrysalis 4.6
An Apology to Elephants 7.9
Second Coming 5.2
Cargo 7.7
L'autre vie de Richard Kemp 6.5
White God 6.9
War Story 4.0
La fille du 14 juillet 6.3
Der Bunker 6.3
Nightmare Code 6.9
Pitch Perfect 2 6.6
Grigris 6.1
A Touch of Sin 7.1
The Missing Picture 7.4
Omar 7.6
Norte, the End of History 7.4

138
9-Month Stretch 6.5
A Fighting Man 5.5
Stop the Pounding Heart 6.9
Madras Cafe 7.8
The Auction 6.9
Wolf at the Door 7.6
Coherence 7.1
Paraèso 6.3
Tiger Orange 6.2
Amy 8.0
As Above, So Below 6.1
Wish I Was Here 6.7
Life Partners 6.2
Magic in the Moonlight 6.6
2 Autumns, 3 Winters 6.7
Nightcrawler 7.9
Lucy 6.4
Shaun the Sheep Movie 7.4
Bad Turn Worse 5.5
My Sweet Pepper Land 7.1
Buen Dèa, Ramèn 7.7
Soodhu Kavvum 8.4
William Shatner Presents: Chaos on the Bridge 7.3
Ugly 8.2
The Wonders 6.2
Passione sinistra 5.2
Sarah Silverman: We Are Miracles 6.6
The Blood Lands 4.7
Black or White 6.6
Cash Only 7.7
Chef 7.3
Macbeth 8.1
I Origins 7.3
The Spoils of Babylon 6.9
Enklava 7.8
The Saratov Approach 5.5
Patrick's Day 7.1
La mossa del pinguino 6.0
Farewell Baghdad 7.4
Hippocrates: Diary of a French Doctor 6.8
99 Homes 7.2
Manglehorn 5.8
A Horse for Summer 6.2
Turks & Caicos 6.6
Mary Loss of Soul
Thou Gild'st the Even 8.0
Bang Bang 5.5
My Little Pony: Equestria Girls 6.1

139
Insurgent 6.4
Gregory Go Boom 6.5
Wolf Totem 6.7
A Nightingale Falling 6.9
The Signal 6.1
Obvious Child 6.8
John Wick 7.2
Manuscripts Don't Burn 7.1
The Young Kieslowski 6.7
Bethlehem 7.2
Double Play: James Benning and Richard Linklater 6.8
Over Your Dead Body 6.3
Miss and the Doctors 5.9
The Dead 2: India 5.1
The Other One 7.2
Dual 7.2
20,000 Days on Earth 7.5
God's Pocket 6.1
Blood of My Blood 6.0
Nice and Easy 6.6
Thou Gild'st the Even 8.1
My So-Called Father 6.1
The Gambler 7.4
The Lady in Number 6: Music Saved My Life 7.9
The 2013 Rock and Roll Hall of Fame Induction Ceremony 7.2
Margarita, with a Straw 7.4
In the Name of My Daughter 6.1
Siddharth 7.2
Intimate Parts 5.7
Hard Sun 7.1
Motylki 8.3
Far from the Madding Crowd 7.2
The Connection 7.1
Far from Men 7.3
Earth's Golden Playground 4.3
Common 7.4
A Most Violent Year 7.1
All This Mayhem 8.0
Klumpfisken 6.6
Our Sunhi 6.8
JFK: The Smoking Gun 7.3
Bros Before Hos 6.4
Corazèn de leèn 6.9
Room 8 8.0
The Living 6.3
The Pool 5.5
Death Comes to Pemberley 7.1
Kung Fu Killer 6.5

140
Che strano chiamarsi Federico 6.9
Happy Christmas 5.6
Spanish Affair 6.6
Once My Mother 7.5
The White Storm 6.7
What a Fuck Am I Doing on This Battlefield 6.6
Love Steaks 6.8
The Galapagos Affair: Satan Came to Eden 6.8
Rocks in My Pockets 7.5
The Anomaly 4.8
The Road Within 7.0
The Hunters 4.9
Grace 5.8
Wood Job! 7.7
Finding Christmas 6.5
Comet 6.7
Raspberry Boat Refugee 6.1
Under the Electric Sky 6.3
The Face of an Angel 4.8
Hot Pursuit 4.9
Secretly, Greatly 6.8
They Have Escaped 6.3
Montage 7.5
Cold Eyes 7.2
The Foxy Merkins 6.2
A Fuller Life 6.8
Hwayi: A Monster Boy 7.1
Kundo: Age of the Rampant 6.8
The Purge: Anarchy 6.5
Joanna 6.7
The Nightingale 7.0
Violette 7.0
Apartment Troubles 4.3
Alex of Venice 5.9
Chocolate Strawberry Vanilla 5.5
21 Days 7.0
Back Issues: The Hustler Magazine Story 6.6
Bombay Velvet 5.8
The Girl in the Book 8.1
The Guest 6.7
The Theory of Everything 7.8
Twinsters 8.6
The Hundred-Foot Journey 7.3
Planes: Fire & Rescue 5.9
Get a Horse! 7.6
Patema Inverted 7.4
Boa Sorte 6.8
9-Man 7.7

141
Suck Me Shakespeer 7.1
Shuddh Desi Romance 5.8
The Terror Live 7.2
L'arte della felicitè 7.2
Beneath 5.5
The Stalker 5.4
Spaghetti Story 7.1
Yosemite 7.4
Young Detective Dee: Rise of the Sea Dragon 6.5
Halfway 6.5
Eyes of a Thief 6.8
Camp X-Ray 7.0
Window Wonderland 6.7
The Summer of Sangaile 6.9
Homeland 7.4
John Apple Jack 6.1
De nieuwe wildernis 7.3
Cha cha cha 5.7
No Stranger Than Love 6.9
Super Buddies 4.6
Outliving Emily
Noah 7.8
Mary Kom 6.8
Kènig von Deutschland 5.9
Unbeatable 7.3
Traitors 6.3
Amour fou 6.2
Pete's Christmas 6.1
The 11th Hour 5.3
Very Ordinary Couple 6.3
The Color of Rain 6.8
Cantinflas 6.7
Boy Meets Girl 7.1
The Water Diviner 7.2
The Face Reader 6.8
Mike Tyson: Undisputed Truth 7.4
The Goob 6.1
The Portal 8.0
Stromberg - Der Film 7.5
Adama
Wild Tales 8.2
Olive Kitteridge 8.4
Sur le chemin de l'ècole 7.2
Babysitting 6.7
Mia Madre 7.1
Happy Ending 5.4
The Flying Man 7.0
Titli 6.4

142
Not My Day 6.7
Faults 6.6
The Honourable Woman 8.2
The Little Queen 7.1
Blue Exorcist: The Movie 7.2
Por un puèado de besos 6.1
Rurèni Kenshin: Densetsu no saigo-hen 7.6
My Class 6.5
Inbetween Worlds 6.3
The Rule of Accident 6.3
Echoes 4.3
Meu Passado Me Condena: O Filme 6.0
The Guide 8.5
The Crossing 6.2
WhoAmI 7.6
Nightingale 6.5
Atharintiki Daaredi 7.4
Mr Hublot 7.2
The Wonders 6.8
Getèlio 6.8
Li'l Quinquin 7.5
SuperBob
Un ragazzo d'oro 5.1
Of Mind and Music 6.7
Documented 6.7
Cru 7.8
No One's Child 7.9
#chicagoGirl: The Social Network Takes on a Dictator 7.1
Before I Disappear 7.2
The New Black 6.4
Cub 5.9
Manos sucias 7.1
Break Point 6.0
Gett: The Trial of Viviane Amsalem 7.8
Learning to Drive 6.5
If I Had Wings 7.3
Jackass Presents: Bad Grandpa 6.6
The Beat Beneath My Feet 6.5
Isabelle Dances Into the Spotlight 5.7
Sole a catinelle 6.3
Marvel One-Shot: Agent Carter 7.6
The Forbidden Room 6.7
Grace 4.8
Our Curse 7.2
The Phone Call 7.1
Christmas in Conway 7.0
Bad Hair 6.9
Supermensch: The Legend of Shep Gordon 7.3

143
Of Horses and Men 6.9
L'intrepido 5.8
Flowers in the Attic 6.1
Appropriate Behaviour 6.9
Miss Violence 7.1
Zoran, il mio nipote scemo 6.7
The Invisible Boy 6.3
We'll Never Have Paris 4.6
Spy 7.3
Crocodile Gennadiy 8.0
Kelly & Cal 6.1
The Pretor 5.2
Goodnight Mommy 6.7
Rosemary's Baby 5.6
Say 'I Love You' 7.1
Los Flamencos 5.0
My Last Year with the Nuns 7.2
Magical Girl 7.3
Tim's Vermeer 7.8
The Treatment 7.2
Sorrow and Joy 7.1
Dinosaur 13 7.1
Eden 6.3
Advantageous 6.3
The Identity Theft of Mitch Mustain 8.7
People in Places 5.4
Burt's Buzz 6.6
The Fake 6.8
At Berkeley 7.3
Life Feels Good 7.8
Memphis 5.3
Cymbeline 4.0
Listen Up Philip 6.4
Monk with a Camera 6.6
Diet of Sex 4.2
Bakit hindi ka crush ng crush mo? 6.6
The Snow White Murder Case 7.2
The Inbetweeners 2 6.5
Summertime 5.8
Sous les jupes des filles 5.3
How to Build a Better Boy 5.9
Tusk 5.4
52 Tuesdays 6.6
House of Manson 7.0
Ghoul 4.5
Bèrning 6.4
Story of My Death 5.7
When Evening Falls on Bucharest or Metabolism 6.3

144
The Masked Saint
Manakamana 6.7
Coast of Death 6.7
Love Is the Perfect Crime 5.9
The Silly Ones and the Stupid Ones 5.9
WNUF Halloween Special 6.8
Paris Follies 6.3
Garden Lovers 7.3
See No Evil 2 4.8
Gabrielle 6.9
Watermark 6.8
Believe Me 4.9
Foreign Bodies 6.0
The World of Kanako 6.8
Misconception 5.8
Jimmy's Hall 6.7
Luton 5.7
All Stars 8.4
10.000 Km 6.8
The Heart Machine 5.9
Circle 7.2
Club Sandwich 6.6
Lizzie Borden Took an Ax 5.7
Stray Dogs 7.0
Take Care 6.1
'Til Madness Do Us Part 7.8
Oktober November 6.5
Rags & Tatters 6.7
Nasty Baby 6.3
Overheard 3 6.0
Redemption 7.1
Little Accidents 5.8
Beyond the Lights 6.9
Pasolini 5.8
Coming Home 7.2
Freistatt 7.2
Der Banker: Master of the Universe 7.2
Sucker
Phantom Halo 5.1
She's Lost Control 5.2
Catch a Christmas Star 6.3
Marie's Story 7.3
Misery Loves Comedy 6.2
Houdini 7.4
Tim Maia 7.3
Jimmy Vestvood: Amerikan Hero 8.2
Son of Batman 6.6
Batman: Assault on Arkham 7.4

145
Black Mountain Side 7.0
Amira & Sam 6.2
The Absent One 7.1
Hacker's Game 3.7
Der Nachtmahr 7.3
The Sound of Music Live! 5.8
All About the Feathers 6.4
Our Man in Tehran 7.6
Heropanti 5.5
Finding Fanny 5.9
A Small September Affair 7.4
The Journey 7.7
Prison Terminal: The Last Days of Private Jack Hall 7.9
Belle and Sebastian 6.8
Wavemakers 8.0
Desierto
Let Us Prey 5.6
The Referee 6.6
Thunder and the House of Magic 6.3
The Circle 7.2
A Brilliant Young Mind 7.2
Never Tear Us Apart: The Untold Story of INXS 7.8
Leopardi 6.8
Listening 7.5
Wish 8.1
The Geographer Drank His Globe Away 7.6
Partisan 6.9
Here Be Dragons 7.7
Honeytrap 6.4
Hello, My Name Is Frank 8.3
The Farewell Party 7.2
Ballet 422 6.0
The Condemned 7.3
Ciudad Delirio 6.1
Justin Bieber's Believe 1.6
The Benefactor 8.2
Sleeping with Other People 6.3
Mr. Holmes 7.4
The Greggs 7.1
Pride 7.8
Fool Circle 6.0
Room 7.5
Theeb 7.7
Hartenstraat 6.3
Sacro GRA 6.2
The Diary of a Teenage Girl 7.0
Sotto una buona stella 5.7
The Villain 6.4

146
Bei tou zou de na wu nian 5.9
Consequences 6.2
Dukhtar 7.5
Be My Cat: A Film for Anne 6.2
Honeymoon 5.6
Giovanni's Island 7.4
Feuten: Het Feestje 5.7
10 Minutes 7.5
Sonyeo 6.6
The Boy Next Door 4.6
Factory Girl 7.6
The Boy and the World 8.0
Asier ETA biok 7.5
The New Girlfriend 6.6
The Wolf and the Lamb 8.1
Hellion 6.2
Class Enemy 7.9
Gorko! 5.9
Sleepless in New York 6.7
Insidious: Chapter 3 6.3
Free Range/Ballad on Approving of the World 6.0
Breakfast with Jonny Wilkinson 5.4
The Great Martian War 1913 - 1917 6.8
The Return to Homs 7.8
If You Don't, I Will 5.7
Relationship Status: It's Complicated 5.4
Symphony No. 42 8.3
My Prairie Home 5.9
The Kingdom of Dreams and Madness 7.9
Slow West 7.0
Boats 6.4
Neko no shukai 7.5
Son of God 5.5
A cambio de nada 6.7
Actress 5.9
Beltracchi: The Art of Forgery 7.1
Two Raging Grannies 7.1
A LEGO Brickumentary 6.5
Alphabet 7.5
Dreamcatcher 6.5
The Nostalgist 7.8
The Last Man on the Moon 8.0
A Brony Tale 5.6
Uncle John 8.0
The Master Plan 5.7
Yalom's Cure 6.7
Super Duper Alice Cooper 7.3
The Blue Room 6.4

147
Still the Water 6.9
Island of Lemurs: Madagascar 7.1
Spare Parts 7.2
Becoming Bulletproof 7.6
It Follows 6.9
I'll See You in My Dreams 6.8
Apocalyptic 4.5
Tutta colpa di Freud 6.3
The 10 Year Plan 6.3
Sword Art Online Extra Edition 6.9
The Redwood Massacre 3.8
SlingShot 8.2
Violent 7.1
Charlie's Country 7.3
Trailer Park Boys: Don't Legalize It 7.5
A Estrada 47 6.3
The Boxcar Children 6.8
The Empty Hours 6.3
Above and Below 7.4
Emergency Exit: Young Italians Abroad
Little England 8.0
Marshland 7.4
Hotori no sakuko 7.1
Red Family 6.7
The Owners 6.2
Fish & Cat 7.9
Zurich 6.3
Stratos 6.8
The Wrath of Vajra 5.6
Saphirblau 6.5
Stray Dog 6.8
Ivory Tower 6.9
The Seventh Fire 7.4
Kumiko, the Treasure Hunter 6.7
Concerning Violence 7.2
The Case Against 8 7.2
The Overnighters 7.5
Bloody Knuckles 7.0
Red Army 7.7
Pulp: a Film About Life, Death & Supermarkets 7.3
Seventh Code 5.8
Han Gong-ju 7.5
Blowfly Park 5.5
The Immortalists 6.4
The Sixties 8.5
The Internet's Own Boy: The Story of Aaron Swartz 8.1
Jackie & Ryan 5.8
The Mend 6.5

148
Ambassada 4.8
Hin und weg 7.3
Manson Family Vacation 6.8
Creative Control 7.6
Tale of Tales 6.7
Suburban Gothic 5.6
The Saboteurs 8.4
Land Ho! 6.0
Arabian Nights: Volume 1 - The Restless One 7.3
Leave The World Behind 7.9
Two Step 7.3
The Great Alone 8.7
Once in a Lifetime 7.2
Equals 6.3
Samurai Hustle 6.3
Uzumasa Limelight 6.4
Just Jim 8.7
Wind 7.4
The Falling 5.7
Rams 7.7
Good Kill 6.3
Animals 6.2
Eila, Rampe ja Likka 5.7
The Midwife 6.4
The Babushkas of Chernobyl 8.2
Paternity Leave 6.7
Stung 5.0
One Last Hug: Three Days at Grief Camp 7.6
Boychoir 6.6
The Mystery of Happiness 6.1
Haemoo 7.0
A Second Chance 6.9
Bayonetta: Bloody Fate 5.8
As We Were Dreaming 6.6
Supervention 8.2
The Reunion 2: The Funeral 6.1
Vessel 7.3
Castles in the Sky 6.9
The Confines 7.9
Youth 7.3
Deep Web 7.2
Women Who Flirt 6.0
Mala Mala 5.0
Beyond Beauty: Taiwan from Above 7.9
Still Alice 7.5
The Trip to Bountiful 7.0
Boys 7.6
She's Beautiful When She's Angry 6.4

149
Yasmine 7.6
Torrente 5 5.4
Queen 8.5
Annabelle 5.4
Tommy Cooper: Not Like That, Like This 7.7
Next Time I'll Aim for the Heart 6.3
Un altro mondo 8.0
Whitey: United States of America v. James J. Bulger 6.8
Paper Planes 6.2
Eu Nèo Faèo a Menor Ideia do Que Eu Tè Fazendo Com a Minha Vida 5.4
Imperial Dreams 7.0
Middle of the Road 4.5
Stand by Me Doraemon 7.5
This Isn't Funny 8.2
About a Girl 6.4
Stille hjerte 7.3
Maya the Bee Movie 6.0
Maicol Jecson 6.0
Burying the Ex 5.3
Firestorm 6.3
Twelve Trees of Christmas 6.1
Killa 8.1
Blue Sky Bones 6.0
Entertainment 5.6
Hungry Hearts 6.2
DamNation 7.7
Parasyte: Part 1 7.1
1001 Grams 6.6
Stereo 6.7
Coda 7.7
Stealing Cars 7.9
As the Gods Will 6.5
Adios Carmen 7.8
Deliverance Creek 6.1
We Come as Friends 7.7
Breathe 7.1
Awaken 3.1
Guidance 7.1
Wild in Blue 7.0
The Mafia Only Kills in Summer 7.3
Purgatorio 5.2
The Gunfighter 8.1
Polycarp 8.1
Mary Is Happy, Mary Is Happy 7.3
Redeemer 5.5
700 Sundays 8.3
Naz & Maalik 7.0
Six by Sondheim 7.9

150
The Gabby Douglas Story 7.1
The Taking of Deborah Logan 6.0
Haider 8.4
Short Peace 7.0
The Legend of Longwood 6.9
Miss India America 8.0
Evaporating Borders 8.3
Sicario 7.9
Daawat-e-Ishq 6.2
When Marnie Was There 7.8
Young Tiger 6.3
No No: A Dockumentary 7.3
Samba 6.7
The Dead Lands 6.3
The Roosevelts: An Intimate History 8.8
Atlèntida 6.5
The Lion's Mouth Opens 7.9
Tajja: sineui son 7.0
Ciencias naturales 6.6
The Attorney 7.8
The Suspect 6.9
Nachthelle 6.2
Mythica: A Quest for Heroes 4.9
Glassland 6.7
The Man from Oran 7.1
Timbuktu 7.2
De Surprise 6.8
As the Light Goes Out 6.4
The End of the Tour 7.9
What We Do in the Shadows 7.6
Drishyam 8.9
Shrew's Nest 6.8
The Divine Move 6.7
Gooische Vrouwen II 6.0
Ice Poison 6.6
Bad Fucking 5.0
April and the Extraordinary World 7.9
Fasten Your Seatbelts 6.5
Song 'e Napule 7.0
An Afternoon 7.2
The Lost Honour of Christopher Jefferies 8.5
Schneider vs. Bax 7.5
Daughters of Dolma 7.7
Number One Fan 6.4
The Swedish Moment 6.1
Junior
I Can Quit Whenever I Want 7.0
Cake 6.5

151
Prospect 7.4
Tinker Ticker 6.7
Mès negro que la noche 4.2
Paul Blart: Mall Cop 2 4.4
The Sea of Trees 5.5
Francofonia 7.3
Extraordinary Tales 7.0
Night Will Fall 7.9
E-Team 7.1
Closer to God 4.8
Fort Tilden 5.3
Hèter meines Bruders 7.0
Happiness 7.1
Escape 5.8
The Notorious Mr. Bout 6.5
To Kill a Man 6.4
To Singapore, with Love 7.3
Finders Keepers 7.5
Hallè hallè 5.5
La buca 5.7
Patterns of Evidence: The Exodus 8.4
The Lobster 8.2
The White Haired Witch of Lunar Kingdom 5.2
Stations of the Cross 7.6
JLA Adventures: Trapped in Time 5.8
American Hostage
Rise of the Legend 6.4
Blind Massage 7.2
Black Coal, Thin Ice 6.7
Jack 6.9
Macondo 6.7
Blank: A Vinylmation Love Story 6.9
Kung Fury 8.3
Toy Story That Time Forgot 7.3
The Distance 5.8
Casa Grande 7.2
Torneranno i prati 6.9
1971 7.4
Mon roi 6.3
Who the F**K Is Arthur Fogel 6.9
The Fatal Encounter 6.9
Vie sauvage 6.6
Return to Ithaca 6.3
Friends and Romans 7.2
Avengers Confidential: Black Widow & Punisher 5.8
La sedia della felicitè 6.4
The Fear of Darkness 6.7
Tillbaka till Bromma 4.7

152
Mediterranea 7.1
7 Chinese Brothers 6.2
Honig im Kopf 6.8
Pas son genre 6.6
Pixadores 7.1
Kombinat 'Nadezhda' 6.6
I Am Syd Stone 8.4
Mardaani 7.5
For Some Inexplicable Reason 8.3
Petals on the Wind 6.3
Take Me to the River 7.8
The Teacher's Diary 7.9
Embers
The Kidnapping of Michel Houellebecq 6.8
The Midnight After 5.6
Steve McQueen: The Man & Le Mans 8.1
Time Out of Mind 6.0
La cueva 5.8
Der Anstèndige 6.7
The Assassin 7.0
Another Year 6.5
54 Days 7.0
Holiday 5.7
Misunderstood 6.6
That Demon Within 6.1
The Possibilities Are Endless 6.2
Snow on the Blades 6.8
Miss Granny 7.3
Best of Enemies 7.8
Harmontown 7.4
Melbourne 6.7
Drumline: A New Beat 5.2
The Look of Silence 8.4
The Good Sister 6.2
Saihate nite 6.3
Headfirst 5.9
Chevalier 6.2
The Incident 7.1
Como funcionan casi todas las cosas
Blood Moon 5.5
My Little Pony: Equestria Girls - Rainbow Rocks 7.4
Meadowland 8.3
Bhoothnath Returns 7.0
The D Train 5.2
Finders Keepers 4.4
Messi 7.5
Dior and I 7.2
Wolf Warrior 5.6

153
Sunny in the Dark
A Year in Champagne 6.8
45 Years 7.6
Zapped 5.8
The Grief of Others 7.1
The Bèlier Family 7.3
Nas: Time Is Illmatic 7.2
èkte vare 6.2
Slums: Cities of Tomorrow 7.1
Perez. 6.4
Khoobsurat 6.4
Broken 6.7
Wolf Hall 8.3
Print the Legend 7.2
Chasuke's Journey 6.4
Pale Moon 7.1
Durak 8.0
The Dinner 6.5
Welcome to Happiness 8.2
A Histèria Da Eternidade 8.0
Songs My Brothers Taught Me 6.9
The Great Invisible 6.5
The Midnight Swim 5.4
Jigarthanda 8.5
Point and Shoot 6.9
Regarding Susan Sontag 6.9
A Perfect Day 7.0
Korengal 6.7
Strana Oz
Sweet Alibis 6.0
Tashi and the Monk 8.2
Only the Dead 8.0
Unga Sophie Bell 6.6
Limited Partnership 8.1
La cèrèmonie 6.0
Liebe mich! 6.7
Night Owls 6.8
Belye nochi pochtalona Alekseya Tryapitsyna 6.9
Life May Be 6.2
The Last Season
Eager 6.0
Northpole 6.5
Conducta 7.6
Out of Nature 7.3
Wondrous Boccaccio 5.6
Just Eat It: A Food Waste Story 7.5
Girl on the Edge 7.8
24 Days 5.9

154
Lights Out 7.6
Antboy: Revenge of the Red Fury 5.6
Nena 6.9
The Sheik 7.2
Killing Jesus 4.4
A Sunday Kind of Love
El vals de los inètiles 6.4
Mommy 8.2
Ankhon Dekhi 8.1
Creature 3.1
One-Minute Time Machine 8.2
Rolling Papers 5.8
Death in Buenos Aires 5.2
Animation Runner Kuromi 2 6.6
Paper Towns 6.9
Noi 4 6.1
Summer of Blood 5.4
Mutant World 3.1
Mr. Dynamite: The Rise of James Brown 7.5
Negociador 7.1
Nowitzki: The Perfect Shot 7.8
Bjèrk: Biophilia Live 7.8
Wishin' and Hopin' 7.1
Remember Me? 6.4
Force Majeure 7.4
Hole 8.6
Wet Bum 7.2
Don't Hug Me I'm Scared 2: Time 7.5
Soul Boys of the Western World 6.8
Jinxy Jenkins, Lucky Lou 8.1
Appleseed Alpha 6.6
Wir tun es fèr Geld 6.4
I Smile Back 7.1
The Newburgh Sting 7.7
Absent Minded
Let's Sin 8.1
Sworn Virgin 6.4
The Photographer 5.8
The Snake Brothers 7.9
Divine Access 7.7
Art and Craft 7.0
21 Years: Richard Linklater 6.6
Modris 6.9
Songs She Wrote About People She Knows 6.7
Marvellous 7.9
Party Girl 6.6
Giuseppe Makes a Movie 8.2
A Girl at My Door 7.0

155
Armi elèè! 5.8
H. 6.3
Erebus: Into the Unknown 7.4
Learning to Ride
Free Fall 7.1
Holding the Man 7.9
Hardkor Disko 5.7
Dragon Blade 6.3
The Salt of the Earth 8.4
Lovemilla 5.6
Len and Company 7.4
Merchants of Doubt 7.5
Maidan 6.5
Silvered Water, Syria Self-Portrait 7.0
You're Ugly Too 7.6
Last Cab to Darwin 7.6
Fugly 4.7
Felix and Meira 6.8
Alias Marèa 7.2
600 Millas 6.4
Heaven Knows What 5.8
Feast 8.3
Miss Hokusai 6.6
Sarajevo 6.9
The Other One: The Long, Strange Trip of Bob Weir 7.7
One on One 6.0
Gangnam Blues 6.2
Coming Soon 8.0
Dude Bro Party Massacre III 6.2
All About My Parents 4.8
It's Already Tomorrow in Hong Kong 7.1
Of Men and War 6.9
Remember 7.4
Bessie 6.8
Deathgasm 7.0
An Italian Name 6.6
The Kindergarten Teacher 6.8
I Am Michael 6.5
Unfriended 5.8
A Dangerous Game 7.5
The Wait 6.2
Court 7.9
Refugiado 6.6
Over the Garden Wall 9.2
Autism in Love 7.4
The Great Hypnotist 7.0
3 AM: A Paranormal Experience 4.2
Das Ende der Geduld 6.7

156
The Disappearance of Eleanor Rigby: Her 7.0
Requisitos para ser una persona normal 6.8
One Christmas Eve 6.3
Die Fischerin 6.1
Last Chance 5.4
Ava's Possessions 6.4
The Disappearance of Eleanor Rigby: Them 6.4
Sailing to Paradise 6.8
Hill of Freedom 6.9
Body 6.1
A Brave Heart: The Lizzie Velasquez Story 9.4
Latin Lover 6.4
Tetarti 04:45 7.2
Mountains May Depart 6.6
The Second Mother 7.5
Bogowie 7.8
Sherpa 8.3
Hitchcock/Truffaut 8.5
Flocken 6.6
Wire Cutters 8.1
Whitney 5.3
Self Made 6.0
Elephant Song 6.6
Our Little Sister 7.7
Asterix and Obelix: Mansion of the Gods 7.0
Summer Nights 5.7
Warsaw '44 6.7
Hello, My Name Is Doris 8.0
Iron Ivan 6.6
Love 6.3
Ashby 6.2
Afterlife 7.4
Sindrom Petrushki
Cherry Tobacco 6.6
Wir sind die Neuen 6.7
Sleeping Giant 7.3
War Pigs 4.1
I'm the One You Want 7.6
Cèdigo Paz 7.3
Valley Uprising 8.7
Paulina 6.7
Corner Gas: The Movie 6.7
The Swimmers 6.0
The Brand New Testament 6.9
The Escort 5.8
Roar 5.7
Chronicle of a Blood Merchant 6.9
Brand: A Second Coming 8.3

157
6 Years 5.6
Drone 7.3
Halo: Nightfall 5.7
Son of Saul 7.9
Noi e la Giulia 6.8
Ode to My Father 7.7
Cop Car 6.3
Bloed, Zweet & Tranen 7.4
A Blast 6.1
The Unauthorized Saved by the Bell Story 4.5
The Girl Who Talked to Dolphins 6.9
Naked Among Wolves 6.9
Monster High: Freaky Fusion 6.5
Lava 7.1
Results 5.8
Tangerine 7.4
Labyrinth of Lies 7.4
Scusate se esisto! 6.5
The Tree 7.4
A War
The Visit 6.0
Ratter 7.8
Thread of Lies 7.6
Bang Gang (A Modern Love Story) 6.1
Felices 140 6.1
The Overnight 6.4
Dope 7.6
Chronic 6.0
Homies 5.8
Assassination Classroom 6.9
Clean Hands
A Fool 7.7
Mune, le gardien de la lune 6.9
The Bronze 6.4
Ogni maledetto Natale 5.7
Tiny Times 3.0 2.9
King Jack 8.2
My Lonely Me
11 Minutes 7.6
The Missing 8.1
Men & Chicken 6.8
Tokyo Fiancèe 6.5
Kept Woman 6.6
Batkid Begins 5.8
Chuang ru zhe 6.6
Sonyeogoedam 6.1
Fires on the Plain 6.0
That Sugar Film 7.3

158
The State-Mafia Pact 7.2
Christmas, Again 7.1
Black Souls 7.0
The Continent 6.3
Gayby Baby 8.6
Those People 7.7
Call Me Lucky 7.7
Loreak 6.8
The Birth of Sakè
Tales of the Grim Sleeper 7.1
The Princess of France 5.8
August Winds 6.4
Songs from the North 6.2
Salad Days 7.2
But Always 4.9
Horse Money 7.1
The Iron Ministry 6.7
Remake, Remix, Rip-Off: About Copy Culture & Turkish Pop Cinema 7.9
Si accettano miracoli 4.9
Sei mai stata sulla luna? 5.7
From Caligari to Hitler: German Cinema in the Age of the Masses 6.7
Lamb 8.0
With This Ring 5.7
Iron Man and Captain America: Heroes United 5.6
Hector 7.8
Pokèmon the Movie: Diancie and the Cocoon of Destruction 5.5
Bill Maher: Live from D.C. 7.0
Scooby-Doo! Frankencreepy 6.9
Butterfly 6.6
The Price We Pay 7.6
Out of My Hand 8.4
The Daughter 8.3
OzLand
Zvezda 7.0
Corbo 6.5
The Taking of Tiger Mountain 6.6
Scherzo Diabolico 6.2
A Country Called Home 5.4
My Old Classmate 5.7
Confession 6.5
Along Came a Nanny 6.1
In the Basement 7.1
Welcome to Leith 7.5
We Can't Live Without Cosmos 8.2
Mustang 7.6
The President 7.2
From Caligari to Hitler: German Cinema in the Age of the Masses 6.7
The Perfect Dictatorship 7.3

159
Peter Pan Live! 5.1
Kaakkaa Muttai 8.8
Cafè. Waiting. Love 6.8
One and Two 5.5
Jackrabbit 6.7
Fourth Man Out 8.2
Aanmodderfakker 6.9
Capital C 7.7
III 6.7
Queen of Earth 7.1
What's Between Us 6.0
Do I Sound Gay? 3.8
Foreign Body 4.5
Looking for Grace
Tom and Jerry: The Lost Dragon 6.1
Terror at the Mall 8.2
Hockney 6.8
I Am Ali 6.9
Shut In 7.1
Saving Christmas 1.6
Xiu chun dao 6.6
The Royal Tailor 6.7
Home Care 6.7
Underdog 6.7
Radiator 7.5
Bag Man 7.6
The Man in the Wall 7.6
Whistle Blower 7.1
Cosmos
Gold Coast 5.0
Citizenfour 8.2
Fiddlesticks 6.5
Encounters 6.9
My Golden Days 7.1
The Chinese Mayor 6.9
India's Daughter 8.1
Green Room 7.4
My Love, Don't Cross That River 8.1
Andiamo a quel paese 6.0
Best Christmas Party Ever 6.7
Killswitch 8.8
Pervert Park 7.3
Dark Star: H.R. Giger's World 7.1
Cemetery of Splendour 8.1
Somewhere Only We Know 5.2
We Are Young. We Are Strong. 7.6
Life Is Sacred 8.5
Being Evel 7.2

160
Peace Officer 7.8
Dheepan 6.4
The Russian Woodpecker 7.7
Bitva za Sevastopol 7.2
Disorder 7.0
Frankenstein 6.2
Dhanak 7.2
Packed In A Trunk: The Lost Art of Edith Lake Wilkinson 7.1
My Skinny Sister 7.4
Beyond the Fear 7.6
In the Grayscale 7.0
Dream Driven 7.9
People Places Things 7.0
War 7.0
They Look Like People 7.6
Miedzy nami dobrze jest 7.2
Whisper If I Forget 7.5
Those Who Feel the Fire Burning 7.2
Solnechnyy udar 5.6
1989 7.4
Valley of Love 6.4
Day One
For Grace 7.9
Cartel Land 7.5
3 1/2 Minutes, Ten Bullets 7.3
Ambition 7.7
Lucifer 6.4
Test 7.1
Tired Moonlight 6.3
The Seven Five 7.3
Ixcanul Volcano 7.5
Magician: The Astonishing Life and Work of Orson Welles 6.7
Dark Horse 7.8
Italiano medio 6.4
How to Change the World 7.9
Listen to Me Marlon 8.1
Unexpected 5.7
Crush the Skull 6.4
The Here After 6.8
Iris 6.5
Olmo & the Seagull 7.8
Prince 6.9
Angels of Revolution 6.5
Homme Less 7.8
That Thing Called Tadhana 7.9
World of Tomorrow 8.3
Journey to the Shore 5.2
Two Friends 6.9

161
Bridgend 6.7
The Hunting Ground 6.4
The Ecstasy of Wilko Johnson 7.4
Thank You for Playing 7.3
Limonata 8.1
Socialphobia 6.7
Elizabeth Ekadashi 8.1
Boj za
Western 7.5
The Shaman 8.2
Courted 6.2
Frau Mèller muss weg! 6.3
Top Spin 7.4
TransFatty Lives 7.2
Black Mountain Poets 8.0
Victoria 8.2
Uncle Kent 2 7.2
Les cowboys 5.9
Zid 4.3
Cobain: Montage of Heck 7.7
Tanna 8.0
Forever 6.2
Tyke Elephant Outlaw 7.8
In Transit 6.5
The Witch 7.5
Krisha 7.5
Most Likely to Succeed 8.9
Applesauce 6.9
Caught 7.5
The Boy and the Beast 7.4
Breaking a Monster 7.3
Under Electric Clouds 6.1
Embrace of the Serpent 8.4
White Out, Black In 7.2
James White 7.4
B-Movie: Lust & Sound in West-Berlin 1979-1989 8.1
Evolution
Genetic Me 7.4
An 7.4
The Jinx: The Life and Deaths of Robert Durst 8.9
Insanity 5.5
Ivy 7.6
Ch/B 6.0
The Black Panthers: Vanguard of the Revolution 6.4
It's Me, Hilary: The Man Who Drew Eloise 6.2
Larry Kramer in Love and Anger 7.6
Carte Blanche 6.5
The Mysterious Death of Pèrola 7.1

162
Frame by Frame 6.8
The Break-In 7.4
Live from New York! 6.7
Body 6.8
Taxi 7.6
Crumbs 6.1
Petting Zoo 6.7
Louis C.K.: Live at the Comedy Store 7.8
How to Win at Checkers (Every Time) 7.6
(T)ERROR 7.6
Aferim! 8.3
The Club 7.7
The Pearl Button 7.3
Hot Girls Wanted 6.2
Pionery-geroi 6.7
Adam Curtis: Bitter Lake 8.1
Everything Before Us 7.6
The Clan 7.4
Homeland (Iraq Year Zero) 8.8
Port of Call 6.7
Ave Maria 6.7
The Wakhan Front 6.7
Marguerite & Julien 5.2
Marguerite 7.3
The Measure of a Man 6.7
Dègradè 6.5
Song of Lahore 7.3
The Corpse of Anna Fritz 6.2
Ayanda and the Mechanic 7.4
Ice and the Sky 7.2
Tikkun 7.0
Tom Swift and His Electric Rifle
Emelie 6.9
Thought Crimes: The Case of the Cannibal Cop 6.4
The Treasure 7.5
Hallway
The Blue Hour 7.3
Viaje 6.9
Les oiseaux de passage
Jeruzalem 6.3
Un monstruo de mil cabezas
Ho ucciso Napoleone 5.5
Techo y comida
The High Sun 7.8
Dennis Rodman's Big Bang in PyongYang 6.4
Men Go to Battle 7.4
The Other Side 7.1
Kaili Blues

163
One Floor Below 7.5
Ingrid Bergman in Her Own Words 7.4
Fly Away Solo 8.2
Nahid 7.2
Manoman
Se Dio vuole 6.9
Monkey King: Hero Is Back 7.8
Coin Locker Girl 7.1
Bitcoin: The End of Money as We Know It 7.1
Land and Shade 7.6
A Sinner in Mecca
Very Semi-Serious 8.1
Office 5.7
Much Loved 4.5
The Magic Mountain 7.3
Alice in Earnestland
Heil 5.3
Desde allè
Babai 7.0
Paren s nashego kladbishcha
Tryapichnyy soyuz
Right Now, Wrong Then
The Laundryman 6.3
The Red Spider 7.4
Our Loved Ones 7.4
No Home Movie 3.8
Scenes of a Sexual Nature 6.1

7.4 3. $group
7.4.1 Purpose:
The $group stage groups documents by a specified identifier and performs aggregation operations
like sum, average, min, max, etc.

7.4.2 Example:
To find the average IMDb rating per genre, you can use the $group stage to group by genre and
calculate the average of imdb.rating.

[ ]: pipeline = [
{"$unwind": "$genres"}, # Unwind the genres array to get one document per␣
↪genre

{"$group": {
"_id": "$genres", # Group by genre
"average_rating": {"$avg": "$imdb.rating"} # Calculate the average␣
↪rating

}},

164
{"$sort": {"average_rating": -1}} # Sort by average rating in descending␣
↪ order
]
result = db.movies.aggregate(pipeline)
for genre in result:
print(f"Genre: {genre['_id']}, Average Rating: {genre['average_rating']}")

Genre: Film-Noir, Average Rating: 7.397402597402598


Genre: Short, Average Rating: 7.377574370709382
Genre: Documentary, Average Rating: 7.365679824561403
Genre: News, Average Rating: 7.252272727272728
Genre: History, Average Rating: 7.1696100917431185
Genre: War, Average Rating: 7.128591954022989
Genre: Biography, Average Rating: 7.087984189723319
Genre: Talk-Show, Average Rating: 7.0
Genre: Animation, Average Rating: 6.89669603524229
Genre: Music, Average Rating: 6.883333333333334
Genre: Western, Average Rating: 6.823553719008264
Genre: Drama, Average Rating: 6.803377338624768
Genre: Sport, Average Rating: 6.749041095890411
Genre: Crime, Average Rating: 6.688585405625764
Genre: Musical, Average Rating: 6.665831435079727
Genre: Romance, Average Rating: 6.6564272782136396
Genre: Mystery, Average Rating: 6.527425044091711
Genre: Adventure, Average Rating: 6.493680884676145
Genre: Comedy, Average Rating: 6.450214658080344
Genre: Fantasy, Average Rating: 6.3829847908745245
Genre: Action, Average Rating: 6.347098402018503
Genre: Family, Average Rating: 6.3296712109061755
Genre: Thriller, Average Rating: 6.304498977505112
Genre: Sci-Fi, Average Rating: 6.123609653725079
Genre: Horror, Average Rating: 5.784709897610922

7.5 4. $sort
7.5.1 Purpose:
The $sort stage sorts the documents in the result set.

7.5.2 Example:
To sort movies by release year, you can use the $sort stage to arrange the documents in ascending
or descending order based on the year field.
[ ]: pipeline = [
{"$match": {"year": {"$gte": 2000}}}, # Filter first
{"$sort": {"year": -1}} # Then sort
]

165
result = db.movies.aggregate(pipeline, allowDiskUse=True)
result

[ ]: <pymongo.synchronous.command_cursor.CommandCursor at 0x7bd76d472dd0>

[ ]: db.movies.create_index([("year", pymongo.DESCENDING)])

[ ]: 'year_-1'

7.6 5. $limit
7.6.1 Purpose:
The $limit stage restricts the number of documents passed to the next stage in the pipeline.

7.6.2 Example:
To get the top 5 highest-rated movies, you can use the $limit stage after sorting the movies by
their IMDb rating in descending order.
[ ]: pipeline = [
{"$sort": {"imdb.rating": -1}}, # Sort by IMDb rating in descending order
{"$limit": 5} # Limit to top 5 movies
]
result = db.movies.aggregate(pipeline)
for movie in result:
print(movie["title"], movie["imdb"]["rating"])

The Danish Girl


Landet som icke èr
Scouts Guide to the Zombie Apocalypse
Catching the Sun
La nao capitana

7.7 6. $unwind
7.7.1 Purpose:
The $unwind stage deconstructs an array field from the input document and outputs one document
per element of the array.

7.7.2 Example:
To get all movies along with their individual genres, you can use the $unwind stage to break the
genres array into separate documents, each containing a single genre.

[ ]: pipeline = [
{"$unwind": "$genres"} # Unwind the genres array
]

166
result = db.movies.aggregate(pipeline)
for movie in result:
print(movie["title"], movie["genres"])

Streaming output truncated to the last 5000 lines.


Haute Cuisine Comedy
Mad Ship Drama
Mother of George Drama
Svend Documentary
Seal Team Six: The Raid on Osama Bin Laden Action
Seal Team Six: The Raid on Osama Bin Laden Crime
Seal Team Six: The Raid on Osama Bin Laden Drama
Blowfish Drama
Blowfish Romance
L Comedy
L Drama
Inside Out Animation
Inside Out Adventure
Inside Out Comedy
Dumb and Dumber To Comedy
McFarland, USA Drama
McFarland, USA Sport
Hit and Run Action
Hit and Run Comedy
Hit and Run Romance
Pieces of Talent Horror
Pieces of Talent Thriller
Ice Age: A Mammoth Christmas Animation
Ice Age: A Mammoth Christmas Short
Ice Age: A Mammoth Christmas Adventure
Anton Corbijn Inside Out Documentary
Anton Corbijn Inside Out Biography
Knight of Cups Drama
Knight of Cups Romance
Spring Breakers Action
Spring Breakers Crime
Spring Breakers Drama
The Physician Adventure
The Physician Drama
The Patrol Action
The Patrol Drama
The Patrol War
Artificial Paradises Drama
I Do Drama
The Girl and Death Drama
The Girl and Death Romance
Tammy Comedy

167
Emperor Drama
Emperor History
Adore Drama
Adore Romance
Dawn of the Planet of the Apes Action
Dawn of the Planet of the Apes Drama
Dawn of the Planet of the Apes Sci-Fi
Radiostars Comedy
A Common Man Action
A Common Man Thriller
Amor? Drama
V/H/S Horror
V/H/S Thriller
Into the Storm Action
Into the Storm Thriller
Deadline Mystery
Deadline Thriller
Flicker Comedy
Flicker Drama
The Hunt Drama
Mèbius Drama
Mèbius Thriller
The Taste of Money Drama
Tepenin Ardi Drama
Bad Hair Friday Comedy
Bad Hair Friday Crime
Bad Hair Friday Thriller
Diana Biography
Diana Drama
Diana Romance
Schutzengel Action
Schutzengel Crime
Schutzengel Drama
The Practice of Beauty Comedy
Unter Umstènden verliebt Comedy
Vietnam in HD Documentary
Kings Point Documentary
Kings Point Short
Kings Point Comedy
Paranormal Activity 4 Horror
Stateless Things Drama
Transformers: Age of Extinction Action
Transformers: Age of Extinction Adventure
Transformers: Age of Extinction Sci-Fi
Raze Action
Raze Horror
Mea Maxima Culpa: Silence in the House of God Documentary
For No Good Reason Documentary

168
For No Good Reason Biography
For No Good Reason History
Comme des frères Comedy
Monica Z Biography
Monica Z Drama
Monica Z Music
Thale Fantasy
Thale Horror
Thale Mystery
Under African Skies Documentary
Under African Skies Biography
Under African Skies History
Louis C.K.: Live at the Beacon Theater Documentary
Louis C.K.: Live at the Beacon Theater Comedy
This Ain't California Documentary
This Ain't California History
This Ain't California Sport
The Inevitable Defeat of Mister & Pete Drama
Wild Horse, Wild Ride Documentary
Wild Horse, Wild Ride Western
Victor and the Secret of Crocodile Mansion Adventure
Victor and the Secret of Crocodile Mansion Family
Victor and the Secret of Crocodile Mansion Mystery
Elsa & Fred Comedy
Elsa & Fred Drama
Elsa & Fred Romance
The 100-Year-Old Man Who Climbed Out the Window and Disappeared Adventure
The 100-Year-Old Man Who Climbed Out the Window and Disappeared Comedy
Death of a Man in the Balkans Comedy
Death of a Man in the Balkans Drama
The Wee Man Drama
Walesa: Man of Hope Biography
Walesa: Man of Hope Drama
The Woman Who Wasn't There Documentary
Ginger & Rosa Drama
The Taiwan Oyster Adventure
The Taiwan Oyster Comedy
The Taiwan Oyster Drama
Vysotskiy. Spasibo, chto zhivoy Biography
Vysotskiy. Spasibo, chto zhivoy Drama
Beduin Action
Beduin Biography
Beduin Drama
Ping Pong Documentary
Ping Pong Sport
The Final Girls Comedy
The Final Girls Horror
Special ID Action

169
Special ID Crime
Special ID Drama
Let the Fire Burn Documentary
Let the Fire Burn Drama
Let the Fire Burn History
Maximum Conviction Action
Maximum Conviction Adventure
Maximum Conviction Thriller
Pixels Action
Pixels Comedy
Pixels Sci-Fi
Shock Head Soul Documentary
Shock Head Soul Biography
Nailbiter Horror
Little Black Spiders Drama
We're Not Broke Documentary
Father's Chair Drama
Father's Chair Thriller
Beasts of the Southern Wild Drama
Beasts of the Southern Wild Fantasy
Abendland Documentary
Charles Bradley: Soul of America Documentary
Charles Bradley: Soul of America Biography
Charles Bradley: Soul of America Music
The Last Elvis Drama
Searching for Sugar Man Documentary
Searching for Sugar Man Biography
Searching for Sugar Man Music
The Queen of Versailles Documentary
San Andreas Action
San Andreas Drama
San Andreas Thriller
Stitches Comedy
Stitches Horror
The Stone Roses: Made of Stone Documentary
The Stone Roses: Made of Stone Music
Prora Short
Prora Drama
Prora Romance
Mockingbird Lane Comedy
Mockingbird Lane Drama
Mockingbird Lane Fantasy
These Birds Walk Documentary
These Birds Walk Drama
These Birds Walk News
West of Memphis Documentary
The Mule Comedy
The Mule Crime

170
The Mule Drama
Graceland Crime
Graceland Thriller
Almost 18 Drama
Zaytoun Adventure
Zaytoun Drama
Zaytoun Thriller
The Bling Ring Biography
The Bling Ring Crime
The Bling Ring Drama
Life's a Breeze Comedy
Life's a Breeze Drama
The Girl Biography
The Girl Drama
The Gruffalo's Child Animation
The Gruffalo's Child Short
The Gruffalo's Child Family
I Declare War Action
I Declare War Comedy
I Declare War Drama
The Color of Time Biography
The Color of Time Drama
The Color of Time Romance
Exit Elena Comedy
Exit Elena Drama
Electrick Children Drama
Estamos Juntos Drama
Mass Effect: Paragon Lost Animation
Mass Effect: Paragon Lost Action
Mass Effect: Paragon Lost Sci-Fi
Wolf Children Animation
Wolf Children Drama
Wolf Children Family
Saving Face Documentary
Saving Face Short
Saving Face Drama
Saving Mr. Banks Biography
Saving Mr. Banks Comedy
Saving Mr. Banks Drama
Stalled Comedy
Stalled Horror
The Pretty One Comedy
The Pretty One Drama
Two Night Stand Comedy
Two Night Stand Romance
Xingu Action
Xingu Adventure
Xingu Biography

171
Stars Above Drama
Stars Above History
Stars Above Romance
Le monde doit m'arriver? Comedy
Le monde doit m'arriver? Drama
Le monde doit m'arriver? Family
Umbkotid Comedy
Muirhouse Drama
Muirhouse Horror
Muirhouse Thriller
Vazhakku Enn 18/9 Crime
Vazhakku Enn 18/9 Drama
Vazhakku Enn 18/9 Family
Helter Skelter Drama
Helter Skelter Horror
Speed: In Search of Lost Time Documentary
Snow in Paradise Thriller
Das Leben ist nichts fèr Feiglinge Drama
The Extreme Tragic Story of Celal Tan and His Family Comedy
The Extreme Tragic Story of Celal Tan and His Family Crime
The Extreme Tragic Story of Celal Tan and His Family Drama
My Grandfather's People Comedy
My Grandfather's People Drama
My Grandfather's People Family
Renoir Biography
Renoir Drama
Renoir History
Two Hundred Thousand Dirty Comedy
A Story of Yonosuke Drama
The Pervert's Guide to Ideology Documentary
Subramaniapuram Action
Subramaniapuram Drama
Subramaniapuram Romance
Tabu Drama
Tabu Romance
Rommel Action
Rommel Biography
Rommel Drama
Adam and Dog Animation
Adam and Dog Short
Scooby-Doo! Music of the Vampire Animation
Scooby-Doo! Music of the Vampire Adventure
Scooby-Doo! Music of the Vampire Family
Dancing on the Edge Drama
Wagner's Dream Documentary
Turning Tide Adventure
Turning Tide Drama
Turning Tide Sport

172
Drug War Action
Drug War Crime
Drug War Drama
Fear Clinic Horror
In Fear Horror
In Fear Mystery
In Fear Thriller
Let It Shine Family
Let It Shine Music
Batman: The Dark Knight Returns, Part 2 Animation
Batman: The Dark Knight Returns, Part 2 Action
Batman: The Dark Knight Returns, Part 2 Crime
Tracks Adventure
Tracks Biography
Tracks Drama
Getaway Action
Getaway Crime
Getaway Thriller
The Men Who Built America Documentary
The Men Who Built America Biography
The Men Who Built America History
Southwest Drama
Finding Mr. Right Comedy
Bad Words Comedy
Bad Words Drama
Horrible Bosses 2 Comedy
Horrible Bosses 2 Crime
St. Vincent Comedy
St. Vincent Drama
Empire State Action
Empire State Crime
Empire State Drama
Calm at Sea Drama
Calm at Sea War
Nightfall Action
Nightfall Crime
Nightfall Thriller
Smè citroner gula Comedy
Smè citroner gula Romance
The Deposit Horror
Maps to the Stars Comedy
Maps to the Stars Drama
Life in a Fishbowl Drama
Metallica Through the Never Music
The Art of the Steal Comedy
The Art of the Steal Crime
All About My Wife Comedy
All About My Wife Drama

173
All About My Wife Romance
The Wooden Bridge Romance
To Be Takei Documentary
To Be Takei Biography
Spirit Comedy
Spirit Drama
Humano Documentary
Humano Mystery
The Longest Daycare Animation
The Longest Daycare Short
The Longest Daycare Comedy
Highway of Tears Documentary
As It Is in Heaven Drama
The End of Time Documentary
For a Woman Drama
Carmina or Blow Up Comedy
Carmina or Blow Up Drama
Caesar Must Die Drama
The Monuments Men Drama
The Monuments Men War
The Search Drama
The Search War
We Are Legion: The Story of the Hacktivists Documentary
The Rocket Drama
Aujourd'hui Drama
Barbara Drama
Cut! Horror
Cut! Mystery
Cut! Thriller
Empire of Dirt Drama
Gideon's Army Documentary
I Will Follow You Into the Dark Drama
I Will Follow You Into the Dark Horror
I Will Follow You Into the Dark Romance
The Kings of Summer Adventure
The Kings of Summer Comedy
The Kings of Summer Drama
What's in a Name? Comedy
What's in a Name? Drama
American Sniper Action
American Sniper Biography
American Sniper Drama
90 Minutes Drama
Crowsnest Action
Crowsnest Horror
Crowsnest Mystery
Into the Woods Adventure
Into the Woods Fantasy

174
Into the Woods Musical
Remote Area Medical Documentary
The Strange Case of Wilhelm Reich Biography
The Strange Case of Wilhelm Reich Drama
Im Sommer wohnt er unten Comedy
Im Sommer wohnt er unten Drama
Shahid Biography
Shahid Crime
Shahid Drama
Fanie Fourie's Lobola Comedy
Fanie Fourie's Lobola Romance
Frost Horror
Frost Sci-Fi
Frost Thriller
Houston Drama
Ritual Thriller
Legenda No. 17 Biography
Legenda No. 17 Drama
Legenda No. 17 Sport
Reis e Ratos Comedy
Reis e Ratos Drama
The Old Man Action
The Old Man Adventure
The Old Man Drama
The Dragonphoenix Chronicles: Indomitable Action
The Dragonphoenix Chronicles: Indomitable Adventure
The Dragonphoenix Chronicles: Indomitable Fantasy
Silent Ones Drama
Silent Ones Mystery
Silent Ones Thriller
The Fruit Hunters Documentary
Boy Eating the Bird's Food Drama
Premature Comedy
Earth to Echo Adventure
Earth to Echo Family
Earth to Echo Sci-Fi
Song One Drama
Song One Music
Gotti Biography
Gotti Crime
Gotti Drama
Dormant Beauty Drama
The Purge Horror
The Purge Sci-Fi
The Purge Thriller
Beside Still Waters Comedy
Beside Still Waters Drama
Beside Still Waters Romance

175
So It Goes Short
So It Goes Drama
The Little Ghost Family
The Little Ghost Fantasy
Cold War Action
Cold War Crime
Cold War Mystery
Battle Ground Action
Battle Ground Drama
Battle Ground War
Houston Drama
It Boy Comedy
It Boy Romance
Landmine Goes Click Action
Landmine Goes Click Crime
Landmine Goes Click Drama
Lions Drama
Child's Pose Drama
Pernicious Horror
Pernicious Thriller
Faro Adventure
Faro Drama
Lost and Beautiful Drama
Patch Town Adventure
Patch Town Comedy
Patch Town Fantasy
Little Monsters Crime
Little Monsters Drama
Little Monsters Horror
Neighboring Sounds Drama
Neighboring Sounds Thriller
Safelight Drama
Living Drama
Stage Fright Horror
Stage Fright Musical
A Promise Drama
A Promise Romance
Sex, Drugs & Taxation Biography
Sex, Drugs & Taxation Drama
The Towrope Drama
Grown Ups 2 Comedy
The Look of Love Biography
The Look of Love Comedy
The Look of Love Drama
Red Knot Drama
The Dark Horse Drama
Gulf Stream Under the Iceberg Drama
Short Stories Comedy

176
Short Stories Drama
Short Stories Mystery
Above Dark Waters Drama
The Counselor Crime
The Counselor Drama
The Counselor Thriller
Hammer of the Gods Action
Hammer of the Gods Adventure
Hammer of the Gods History
History of the Eagles Part One Documentary
Finding Fela! Documentary
Finding Fela! Biography
Finding Fela! History
è moi seule Drama
About Time Drama
About Time Fantasy
About Time Romance
Kokowèèh 2 Comedy
The Disciple Drama
The Disciple Thriller
The Almost Man Comedy
The Almost Man Drama
The Neighbors Thriller
Prince Avalanche Comedy
Prince Avalanche Drama
The Elevator: Three Minutes Can Change Your Life Drama
The Elevator: Three Minutes Can Change Your Life Thriller
Mig èger ingen Drama
Teenage Documentary
Teenage History
Les manèges humains Drama
Les petits princes Comedy
Les petits princes Drama
Barbie in a Mermaid Tale 2 Animation
Barbie in a Mermaid Tale 2 Family
Brasserie Romantiek Comedy
Brasserie Romantiek Drama
Chainsaw Maid Animation
Chainsaw Maid Short
Chainsaw Maid Action
Coldwater Drama
Coldwater Thriller
The Judgement Drama
Vishwaroopam Action
Vishwaroopam Adventure
Vishwaroopam Crime
Rat Fever Drama
Fuck Up Comedy

177
Fuck Up Crime
Fuck Up Drama
The Hot Flashes Comedy
The Other Woman Comedy
The Other Woman Romance
Wildlike Adventure
Wildlike Drama
Wildlike Thriller
Somm Documentary
The Devil's Carnival Horror
The Devil's Carnival Musical
Room 514 Drama
Generation Iron Documentary
Generation Iron Drama
Generation Iron Sport
One Mile Away Documentary
Eyjafjallajèkull Comedy
The Brain Man Mystery
Move Comedy
Our Little Differences Drama
Vanishing Waves Romance
Vanishing Waves Sci-Fi
Vanishing Waves Thriller
Aftermath Drama
Aftermath Thriller
Poka noch ne razluchit Comedy
Poka noch ne razluchit Drama
You Are God Biography
You Are God Drama
You Are God Music
E Aè… Comeu? Comedy
Before Midnight Drama
Before Midnight Romance
Transcendence Drama
Transcendence Mystery
Transcendence Romance
Berserk: The Golden Age Arc I - The Egg of the King Animation
Berserk: The Golden Age Arc I - The Egg of the King Action
Berserk: The Golden Age Arc I - The Egg of the King Adventure
God Is the Bigger Elvis Documentary
God Is the Bigger Elvis Short
Lullaby Drama
Liza, the Fox-Fairy Comedy
Liza, the Fox-Fairy Fantasy
Liza, the Fox-Fairy Romance
Jimmy P. Drama
Pecoross' Mother and Her Days Comedy
Pecoross' Mother and Her Days Drama

178
Pecoross' Mother and Her Days Family
Hilda Comedy
Hilda Drama
Zhauzhèrek myng bala Action
Zhauzhèrek myng bala Adventure
Zhauzhèrek myng bala Drama
Amma Lo-Fi Documentary
Amma Lo-Fi Animation
Amma Lo-Fi Biography
Daddy's Little Girl Horror
Daddy's Little Girl Thriller
Confine Thriller
Half of a Yellow Sun Drama
Half of a Yellow Sun Romance
Hiver nomade Documentary
Hiver nomade History
Inequality for All Documentary
The Nun Drama
Little Thirteen Drama
Madea's Witness Protection Comedy
Madea's Witness Protection Crime
Madea's Witness Protection Drama
Paulette Comedy
Paulette Crime
Goliyon Ki Rasleela Ram-Leela Drama
Goliyon Ki Rasleela Ram-Leela Musical
Goliyon Ki Rasleela Ram-Leela Romance
Katy Perry: Part of Me Documentary
Katy Perry: Part of Me Music
A Hijacking Drama
A Hijacking Thriller
Reaching for the Moon Biography
Reaching for the Moon Drama
Reaching for the Moon Romance
Louder Than Bombs Drama
Newlyweeds Comedy
Newlyweeds Drama
Ustad Hotel Comedy
Ustad Hotel Drama
Ustad Hotel Musical
Fill the Void Drama
Seymour: An Introduction Documentary
Seymour: An Introduction Biography
Seymour: An Introduction Music
Return to Nim's Island Adventure
Return to Nim's Island Family
Return to Nim's Island Fantasy
Shepard & Dark Documentary

179
Shepard & Dark Drama
The Noble Family Comedy
Draft Day Drama
Draft Day Sport
Sweetwater Thriller
Sweetwater Western
Complicit Drama
Superman vs. The Elite Animation
Superman vs. The Elite Sci-Fi
Demons Drama
Walker Short
Family Way Comedy
Family Way Drama
Family Way Romance
Jaurès Documentary
Jaurès Biography
The Landlords Drama
Insidious: Chapter 2 Horror
Insidious: Chapter 2 Thriller
The Orheim Company Drama
Il mundial dimenticato Documentary
Il mundial dimenticato Adventure
Omertè Crime
Omertè Drama
Omertè Thriller
Enter the Dangerous Mind Thriller
Don Jon Comedy
Don Jon Drama
Don Jon Romance
Wer Action
Wer Horror
Wer Mystery
Spieltrieb Drama
Curse of Chucky Crime
Curse of Chucky Horror
Rio 2096: A Story of Love and Fury Animation
Rio 2096: A Story of Love and Fury Drama
Rio 2096: A Story of Love and Fury History
The Man in the Orange Jacket Horror
The Man in the Orange Jacket Mystery
The Man in the Orange Jacket Thriller
A Killer Among Us Crime
A Killer Among Us Thriller
Hit & Miss Drama
Canopy Adventure
Canopy Drama
Canopy War
Sand Castles Crime

180
Sand Castles Drama
Sand Castles Thriller
Benigni Animation
Benigni Short
Benigni Comedy
Calvary Drama
Stay Drama
The Internship Comedy
Sparks Action
Sparks Thriller
An Amish Murder Drama
An Amish Murder Mystery
An Amish Murder Thriller
A Castle in Italy Comedy
A Castle in Italy Drama
Dear White People Comedy
Dear White People Drama
The Quiet Ones Horror
Geography Club Comedy
Mystery Road Crime
Mystery Road Mystery
Mystery Road Thriller
Geography Club Comedy
White Bird in a Blizzard Drama
White Bird in a Blizzard Mystery
White Bird in a Blizzard Thriller
American Winter Documentary
American Winter Drama
American Winter News
Mushrooming Adventure
Mushrooming Comedy
Mushrooming Thriller
Think Like a Man Too Comedy
Think Like a Man Too Romance
Political Animals Drama
White Rabbit Drama
An American Ghost Story Horror
Thesis on a Homicide Crime
Thesis on a Homicide Mystery
Thesis on a Homicide Thriller
Under the Rainbow Comedy
Restless Drama
Restless Romance
Horsehead Fantasy
Horsehead Horror
Alcan Highway Documentary
Alcan Highway Drama
I'm So Excited! Comedy

181
Swung Romance
Daddy, I'm a Zombie Animation
Daddy, I'm a Zombie Comedy
Daddy, I'm a Zombie Fantasy
A Haunted House Comedy
A Haunted House Horror
Guardians of the Galaxy Action
Guardians of the Galaxy Adventure
Guardians of the Galaxy Sci-Fi
Bwakaw Drama
Chernobyl Diaries Horror
Chernobyl Diaries Mystery
Chernobyl Diaries Thriller
I Give It a Year Comedy
I Give It a Year Romance
Paziraie sadeh Comedy
Paziraie sadeh Drama
Big Hero 6 Animation
Big Hero 6 Action
Big Hero 6 Adventure
The Cut Drama
The Cut History
The History of Future Folk Comedy
The History of Future Folk Music
The History of Future Folk Sci-Fi
The Source Family Documentary
The Source Family Music
Contest Drama
Contest Family
The Kiyosu Conference History
The Bible Action
The Bible Drama
An Honest Liar Documentary
An Honest Liar Biography
An Honest Liar Comedy
Maattrraan Action
Maattrraan Sci-Fi
Maattrraan Thriller
Rentaneko Comedy
Rentaneko Drama
Kano Biography
Kano Drama
Kano History
2016: Obama's America Documentary
Marvel One-Shot: Item 47 Short
Marvel One-Shot: Item 47 Action
Marvel One-Shot: Item 47 Sci-Fi
2 + 2 Comedy

182
The Film Critic Comedy
The Film Critic Drama
The Film Critic Romance
Zulu Crime
Zulu Drama
Zulu Thriller
Sonja and the Bull Comedy
Sonja and the Bull Romance
Araf/Somewhere in Between Drama
SAGA: Curse of the Shadow Action
SAGA: Curse of the Shadow Adventure
SAGA: Curse of the Shadow Fantasy
The Old Man Action
The Old Man Adventure
The Old Man Drama
Dark Was the Night Drama
Dark Was the Night Horror
Dark Was the Night Thriller
Territory Adventure
Territory Drama
Macropolis Animation
Macropolis Short
Family United Comedy
Jack Biography
Jack Drama
Soar Into the Sun Action
Soar Into the Sun Drama
Soar Into the Sun Romance
Camille Rewinds Comedy
Camille Rewinds Drama
Consuming Spirits Animation
Consuming Spirits Comedy
Consuming Spirits Drama
Aiyyaa Comedy
Do I Have to Take Care of Everything? Short
Do I Have to Take Care of Everything? Comedy
Do I Have to Take Care of Everything? Drama
Hitched for the Holidays Romance
Metal Brothers Comedy
Two Men in Town Drama
Eega Comedy
Eega Drama
Eega Fantasy
Fading Gigolo Comedy
One. Two. One Drama
The World Before Her Documentary
Villegas Drama
Wadjda Comedy

183
Wadjda Drama
Tapia Documentary
Tapia Sport
Chasing Beauty Documentary
Chasing Beauty Biography
A Five Star Life Drama
Dragon Age: Dawn of the Seeker Animation
Dragon Age: Dawn of the Seeker Action
Dragon Age: Dawn of the Seeker Adventure
How to Meet Girls from a Distance Comedy
The Gilded Cage Comedy
The Book of Life Animation
The Book of Life Adventure
The Book of Life Comedy
Spud 2: The Madness Continues Comedy
Halo 4: Forward Unto Dawn Action
Halo 4: Forward Unto Dawn Sci-Fi
Long Way North Animation
The Hollow Crown Drama
The Hollow Crown History
More Than Honey Documentary
Convenience Comedy
Soar Into the Sun Action
Soar Into the Sun Drama
Soar Into the Sun Romance
The Maid's Room Thriller
Dragon Ball Z: Battle of Gods Animation
Dragon Ball Z: Battle of Gods Action
Dragon Ball Z: Battle of Gods Comedy
A Short History of Decay Comedy
The Raid 2 Action
The Raid 2 Crime
The Raid 2 Thriller
Drinking Buddies Comedy
Drinking Buddies Drama
Drinking Buddies Romance
Sweet Micky for President Documentary
Sweet Micky for President Music
Sweet Micky for President News
The Lifeguard Drama
The Lifeguard Romance
Magical Universe Documentary
Magical Universe Biography
Gone Girl Drama
Gone Girl Mystery
Gone Girl Thriller
Magic Mike XXL Comedy
Magic Mike XXL Drama

184
Magic Mike XXL Music
These Final Hours Drama
These Final Hours Thriller
Puss in Boots: The Three Diablos Animation
Puss in Boots: The Three Diablos Short
Puss in Boots: The Three Diablos Adventure
Museum Hours Drama
George Lopez: It's Not Me, It's You Comedy
Mission: Sputnik Adventure
Mission: Sputnik Family
Inori Documentary
Devil's Pass Horror
Devil's Pass Mystery
Devil's Pass Sci-Fi
True Story Drama
True Story Mystery
True Story Thriller
Bad Milo Comedy
Bad Milo Horror
Eat with Me Comedy
Eat with Me Drama
Eat with Me Romance
Vegetarian Cannibal Drama
Must Have Been Love Drama
Must Have Been Love Romance
Redirected Action
Redirected Comedy
Redirected Crime
A Little Game Adventure
A Little Game Family
The Man Who Saved the World Documentary
S#x Acts Drama
American Dreams in China Drama
The Grand Budapest Hotel Adventure
The Grand Budapest Hotel Comedy
The Grand Budapest Hotel Drama
Forgotten Drama
Forgotten Mystery
Forgotten Thriller
The Brussels Business Documentary
The Brussels Business History
The SpongeBob Movie: Sponge Out of Water Animation
The SpongeBob Movie: Sponge Out of Water Adventure
The SpongeBob Movie: Sponge Out of Water Comedy
Real Drama
Real Sci-Fi
21 Ways to Ruin a Marriage Comedy
A Christmas Story 2 Comedy

185
A Magnificent Haunting Comedy
A Magnificent Haunting Drama
A Magnificent Haunting Fantasy
Body Fat Index of Love Comedy
Vanishing Pearls: The Oystermen of Pointe a la Hache Documentary
Vanishing Pearls: The Oystermen of Pointe a la Hache Biography
Vanishing Pearls: The Oystermen of Pointe a la Hache History
Muppets Most Wanted Adventure
Muppets Most Wanted Comedy
Muppets Most Wanted Crime
The Possession of Michael King Horror
Our Nixon Documentary
Our Nixon Biography
Our Nixon Crime
Platinum Data Mystery
Platinum Data Sci-Fi
The Samurai That Night Drama
The Book Thief Drama
The Book Thief War
Supermarket Thriller
OMG: Oh My God! Comedy
OMG: Oh My God! Drama
OMG: Oh My God! Family
Mary and Martha Drama
OMG: Oh My God! Comedy
OMG: Oh My God! Drama
OMG: Oh My God! Family
Sleeping with the Fishes Comedy
The Right Kind of Wrong Comedy
The Right Kind of Wrong Romance
Man from Reno Crime
Man from Reno Drama
Man from Reno Mystery
Mary and Martha Drama
It's Just a Ride Documentary
It's Just a Ride Comedy
Bitch Hug Drama
The Conductor Drama
Ego Drama
Girl Walk: All Day Music
On My Way Comedy
On My Way Drama
Along the Roadside Comedy
Along the Roadside Music
Along the Roadside Romance
Once Upon a Time in Shanghai Action
Once Upon a Time in Shanghai Crime
Design of Death Drama

186
Every Blessed Day Comedy
Every Blessed Day Drama
Every Blessed Day Romance
Road to Ninja: Naruto the Movie Animation
Road to Ninja: Naruto the Movie Action
Road to Ninja: Naruto the Movie Adventure
The Wind Rises Animation
The Wind Rises Biography
The Wind Rises Drama
Juvenile Offender Crime
Juvenile Offender Drama
The Billionaire Drama
The Canyons Drama
The Canyons Thriller
22 Jump Street Action
22 Jump Street Comedy
22 Jump Street Crime
Lesson of the Evil Thriller
First Winter Drama
Frozen Animation
Frozen Adventure
Frozen Comedy
In a World… Comedy
Informant Documentary
Mansome Documentary
Souls of Zen Documentary
Hunting Elephants Comedy
Hunting Elephants Crime
Tai Chi Hero Action
Tai Chi Hero Adventure
Concussion Drama
Head Over Heels 2 Comedy
Head Over Heels 2 Romance
Melody Drama
The Legend of Sarila Animation
The Legend of Sarila Adventure
The Legend of Sarila Family
Whitewash Drama
Whitewash Thriller
Love Is in the Air Comedy
Love Is in the Air Romance
Suzanne Drama
La cinquième saison Drama
La cinquième saison Mystery
Killing Lincoln Biography
Killing Lincoln Drama
Killing Lincoln History
A Special Day Drama

187
Pieta Drama
Shootout at Wadala Action
Shootout at Wadala Crime
Queen of Montreuil Comedy
All About You Drama
Olympus Has Fallen Action
Olympus Has Fallen Thriller
My Beautiful Country Drama
My Beautiful Country Romance
My Beautiful Country War
We Are the Freaks Comedy
The Selfish Giant Drama
23 Blast Drama
23 Blast Family
23 Blast Sport
Gabbar Singh Action
Gabbar Singh Comedy
Mandela: Long Walk to Freedom Biography
Mandela: Long Walk to Freedom Drama
Mandela: Long Walk to Freedom History
The Green Prince Documentary
The Green Prince Biography
Wild Adventure
Wild Biography
Wild Drama
One Eyed Girl Drama
One Eyed Girl Thriller
A Night in Old Mexico Adventure
A Night in Old Mexico Drama
Traffickers Action
Traffickers Crime
Traffickers Drama
Born to Hate… Destined to Love Action
Born to Hate… Destined to Love Drama
Born to Hate… Destined to Love Romance
We Are What We Are Drama
We Are What We Are Horror
We Are What We Are Thriller
Singham Returns Action
Singham Returns Drama
The Gatekeepers Documentary
Afflicted Action
Afflicted Adventure
Afflicted Horror
Fresh Guacamole Animation
Fresh Guacamole Short
Birders: The Central Park Effect Documentary
The Hobbit: The Battle of the Five Armies Adventure

188
The Hobbit: The Battle of the Five Armies Fantasy
Aim High in Creation Documentary
Aim High in Creation Adventure
Aim High in Creation Comedy
Healing Drama
La vida inesperada Comedy
Grantham & Rose Comedy
Grantham & Rose Drama
Grantham & Rose Family
Reincarnated Documentary
Reincarnated Music
Death of a Shadow Short
Death of a Shadow Drama
Death of a Shadow Fantasy
Homefront Action
Homefront Crime
Homefront Drama
Batman: The Dark Knight Returns, Part 1 Animation
Batman: The Dark Knight Returns, Part 1 Action
Batman: The Dark Knight Returns, Part 1 Crime
Casting Couch Comedy
Afternoon Delight Comedy
Afternoon Delight Drama
The Real Miyagi Documentary
The Real Miyagi Action
The Real Miyagi History
Imagine I'm Beautiful Drama
Me, Myself and Mum Comedy
The Great Passage Drama
The Hour of the Lynx Crime
The Hour of the Lynx Drama
American Courtesans Documentary
For Those in Peril Drama
Enemy Mystery
Enemy Thriller
Big Easy Express Documentary
Big Easy Express Musical
Beauty and the Beast Fantasy
Beauty and the Beast Romance
The Better Angels Biography
The Better Angels Drama
The Better Angels History
The Machine Sci-Fi
The Machine Thriller
Mantervention Comedy
White Tiger Action
White Tiger Adventure
White Tiger Fantasy

189
Echo Planet Animation
Game Over Animation
Game Over Short
Margarita Comedy
Margarita Drama
Margarita Comedy
Margarita Drama
Out in the Dark Drama
Out in the Dark Romance
The Final Member Documentary
The Final Member Comedy
The Final Member Drama
The Grand Seduction Comedy
Calloused Hands Drama
Moms Mabley: I Got Somethin' to Tell You Documentary
Moms Mabley: I Got Somethin' to Tell You Comedy
Seeking Asian Female Documentary
Uncanny Drama
Uncanny Sci-Fi
Uncanny Thriller
The Spy Action
The Spy Drama
The Spy Thriller
If You Build It Documentary
Fifty Shades of Grey Drama
Fifty Shades of Grey Romance
The Deflowering of Eva Van End Drama
Shahid Biography
Shahid Crime
Shahid Drama
The Notebook Drama
The Notebook War
Beyoncè: Life Is But a Dream Documentary
Beyoncè: Life Is But a Dream Music
Cyanide Drama
Cyanide Romance
Heiter bis wolkig Comedy
Heiter bis wolkig Drama
Heiter bis wolkig Romance
In the Fog Drama
In the Fog History
In the Fog War
Liz in September Drama
Open Up to Me Drama
Open Up to Me Romance
Strangerland Drama
Strangerland Thriller
Teen Beach Movie Family

190
Teen Beach Movie Musical
Girl Vs. Monster Action
Girl Vs. Monster Adventure
Girl Vs. Monster Comedy
The Captive Crime
The Captive Drama
The Captive Mystery
The Identical Drama
The Identical Music
Offline Drama
Liv & Ingmar Documentary
The Big Ask Comedy
The Big Ask Drama
The Weight of the Nation Documentary
As One Drama
As One Sport
Asura Animation
Asura History
Asura Horror
The Formula Comedy
The Formula Romance
Hank and Asha Comedy
Hank and Asha Romance
Wrestling Queens Comedy
Anchorman 2: The Legend Continues Comedy
Julayi Action
Julayi Comedy
Julayi Drama
Village People Comedy
The Girl from Nowhere Drama
Blind Detective Comedy
Blind Detective Crime
Blind Detective Drama
The Spirit of '45 Documentary
The Spirit of '45 History
The Spirit of '45 Documentary
The Spirit of '45 History
Deepsea Challenge 3D Documentary
Everybody's Got Somebody… Not Me Drama
Somewhere in Palilula Drama
7 Boxes Thriller
The Expendables 3 Action
The Expendables 3 Adventure
The Expendables 3 Thriller
The Zero Theorem Drama
The Zero Theorem Fantasy
The Zero Theorem Sci-Fi
Cas & Dylan Comedy

191
Cas & Dylan Drama
Fruitvale Station Biography
Fruitvale Station Drama
Fruitvale Station Romance
Madame Bovary Drama
Qissa: The Tale of a Lonely Ghost Drama
Qissa: The Tale of a Lonely Ghost Fantasy
A Magnificent Haunting Comedy
A Magnificent Haunting Drama
A Magnificent Haunting Fantasy
White House Down Action
White House Down Drama
White House Down Thriller
Blue Jasmine Drama
El rostro Documentary
The Wild Ones Drama
She Made Them Do It Crime
She Made Them Do It Drama
Inch'Allah Drama
Architecture 101 Drama
Architecture 101 Romance
Cinemanovels Comedy
Cinemanovels Drama
Cinemanovels Romance
PK Comedy
PK Drama
PK Romance
Gold Adventure
Gold Drama
Gold Western
Finsterworld Drama
Aliyah Drama
Ape Comedy
Ape Drama
Ape Fantasy
East Side Sushi Drama
The Last of the Unjust Documentary
Juvenile Offender Crime
Juvenile Offender Drama
Come Out and Play Horror
Cine Hollièdy Comedy
Cine Hollièdy Family
Cine Hollièdy Romance
Run & Jump Drama
No Place on Earth Documentary
No Place on Earth War
The Boy in the Mirror Adventure
The Boy in the Mirror Drama

192
The Boy in the Mirror Family
Amiche da morire Comedy
The Dead and the Living Drama
A Patriotic Man Comedy
A Patriotic Man Drama
A Patriotic Man Sport
Liar's Dice Adventure
Liar's Dice Drama
Liar's Dice Family
Heart of a Lion Drama
Heart of a Lion Romance
Third Person Drama
Third Person Romance
Kadal Drama
Kadal Romance
Parkland Drama
Parkland History
Parkland Mystery
Leprechaun: Origins Horror
The Rover Crime
The Rover Drama
Unforgiven Action
Unforgiven Crime
Unforgiven Drama
Shield of Straw Thriller
Frances Ha Comedy
Frances Ha Drama
Open Heart Documentary
Third Person Drama
Third Person Romance
The Lunchbox Drama
The Lunchbox Romance
Revolution Documentary
Revolution Adventure
Revolution Family
Flu Drama
Flu Thriller
Nude Area Drama
The Dinner Drama
The Dinner Thriller
1,000 Times Good Night Drama
I am Von Hèfler Variation on Werther Documentary
I am Von Hèfler Variation on Werther Biography
Les gamins Comedy
McCullin Documentary
Croczilla Action
Croczilla Comedy
Croczilla Horror

193
Barefoot Comedy
Barefoot Drama
Barefoot Romance
Cutie and the Boxer Documentary
Cutie and the Boxer Biography
Bhaag Milkha Bhaag Biography
Bhaag Milkha Bhaag Drama
Bhaag Milkha Bhaag History
Ostwind - Zusammen sind wir frei Family
Bound by Flesh Documentary
Jobs Biography
Jobs Drama
Rio 2 Animation
Rio 2 Adventure
Rio 2 Comedy
Underground: The Julian Assange Story Biography
Underground: The Julian Assange Story Drama
The Dust Bowl Documentary
Honey Drama
Zanjeer Action
Zanjeer Thriller
Bridegroom Documentary
The Snow on the Pines Drama
All the Wilderness Drama
I Am Big Bird: The Caroll Spinney Story Documentary
I Am Big Bird: The Caroll Spinney Story Biography
I Am Big Bird: The Caroll Spinney Story Drama
Lucia Drama
Lucia Romance
Lucia Sci-Fi
Berserk: The Golden Age Arc III - The Advent Animation
Berserk: The Golden Age Arc III - The Advent Action
Berserk: The Golden Age Arc III - The Advent Fantasy
Berserk: The Golden Age Arc II - The Battle for Doldrey Animation
Berserk: The Golden Age Arc II - The Battle for Doldrey Action
Berserk: The Golden Age Arc II - The Battle for Doldrey Adventure
Daylight Drama
Daylight Mystery
Daylight Thriller
Blue Ruin Crime
Blue Ruin Drama
Blue Ruin Thriller
Squatters Drama
Two Years at Sea Documentary
Underground: The Julian Assange Story Biography
Underground: The Julian Assange Story Drama
Linsanity Documentary
Linsanity Biography

194
Linsanity Sport
Three Sisters Documentary
Barefoot Comedy
Barefoot Drama
Barefoot Romance
Antarctica: A Year on Ice Documentary
Antarctica: A Year on Ice Adventure
Antarctica: A Year on Ice Biography
Five Star Drama
Cheatin' Animation
Cheatin' Comedy
Cheatin' Drama
Parviz Drama
Saheb Biwi Aur Gangster Returns Action
Saheb Biwi Aur Gangster Returns Crime
Saheb Biwi Aur Gangster Returns Drama
Hotell Drama
Ragnarok Action
Ragnarok Adventure
Het Bombardement Drama
Het Bombardement History
Het Bombardement War
The Summit Documentary
The Summit Adventure
El bosc Drama
El bosc Fantasy
A Thirsty World Documentary
Runner Runner Crime
Runner Runner Thriller
Touchy Feely Drama
Kid Drama
Yardbird Short
Stories We Tell Documentary
Lost River Drama
Lost River Fantasy
Lost River Mystery
Made in America Documentary
Made in America Music
Thank You a Lot Drama
15 Years and One Day Drama
Leaving on the 15th Spring Drama
Assault on Wall Street Action
Assault on Wall Street Drama
Assault on Wall Street Thriller
Cat Shit One Animation
Cat Shit One Short
Cat Shit One Action
Minuscule: Valley of the Lost Ants Animation

195
Minuscule: Valley of the Lost Ants Adventure
Minuscule: Valley of the Lost Ants Family
After Lucia Drama
Eskil & Trinidad Drama
Eskil & Trinidad Family
Fame High Documentary
Touch of the Light Drama
Horses of God Drama
Need for Speed Action
Need for Speed Crime
Need for Speed Drama
Mystery Thriller
Pioneer Thriller
Space Station 76 Comedy
Space Station 76 Drama
Space Station 76 Sci-Fi
Three Worlds Drama
When I Saw You Drama
Balancing Act Drama
Milius Documentary
Milius Biography
Milius Drama
Crossfire Hurricane Documentary
Crossfire Hurricane Biography
Crossfire Hurricane Music
Short Term 12 Drama
Baby Blues Drama
Artifact Documentary
Artifact Music
Secrets of War Drama
Secrets of War Family
Secrets of War History
Camp Drama
Balancing Act Drama
Moomins on the Riviera Animation
Moomins on the Riviera Comedy
Moomins on the Riviera Family
The Neighbors Thriller
Kick Action
Kick Comedy
Kick Romance
Oh Willy… Animation
Oh Willy… Short
Oh Willy… Adventure
Harry Dean Stanton: Partly Fiction Documentary
Mord in Eberswalde Crime
Mord in Eberswalde Thriller
The Best of Men Biography

196
Metalhead Drama
BFFs Comedy
Liz & Dick Biography
Liz & Dick Drama
One Piece Film Z Animation
One Piece Film Z Action
One Piece Film Z Adventure
The Last Light Drama
The Last Light Thriller
Almost Married Comedy
Venus and Serena Documentary
The Cabining Comedy
The Cabining Horror
The Cabining Thriller
Deliver Us from Evil Crime
Deliver Us from Evil Horror
Deliver Us from Evil Mystery
I Belong Comedy
I Belong Drama
Violet Drama
Violet Fantasy
Violet Romance
Special 26 Crime
Special 26 Drama
Special 26 History
Scorpion in Love Drama
Scorpion in Love Romance
Scorpion in Love Thriller
8-Ball Crime
8-Ball Drama
Instructions Not Included Comedy
Instructions Not Included Drama
Meet the Patels Documentary
Meet the Patels Comedy
Meet the Patels Romance
Avenged Action
Avenged Fantasy
Avenged Horror
Sofia's Last Ambulance Documentary
When Jews Were Funny Documentary
Cruel & Unusual Sci-Fi
Cruel & Unusual Thriller
Monster Pies Drama
Monster Pies Romance
Gone Fishing Drama
Approaching the Elephant Documentary
Stockholm Drama
Stockholm Romance

197
Words and Pictures Comedy
Words and Pictures Drama
Words and Pictures Romance
Winter of Discontent Drama
Winter of Discontent History
Jamie Marks Is Dead Drama
Fed Up Documentary
The Rambler Comedy
The Rambler Drama
The Rambler Horror
Compulsion Drama
Compulsion Thriller
Life Itself Documentary
Life Itself Biography
Joe Drama
Jacky in the Kingdom of Women Comedy
The Sacrament Horror
The Sacrament Thriller
Only Daughter Drama
Pretty Butterflies Drama
D-Day Action
D-Day Thriller
Bian jing feng yun Crime
Rhymes for Young Ghouls Drama
Sunrise Drama
American Revolutionary: The Evolution of Grace Lee Boggs Documentary
American Revolutionary: The Evolution of Grace Lee Boggs Biography
Una piccola impresa meridionale Comedy
Vic + Flo Saw a Bear Crime
Vic + Flo Saw a Bear Drama
Vic + Flo Saw a Bear Thriller
The Capsule Short
The Capsule Drama
The Education of Mohammad Hussein Documentary
The Education of Mohammad Hussein Short
The Education of Mohammad Hussein Drama
The Damned Horror
The Damned Mystery
The Damned Thriller
Dinotasia Documentary
Dinotasia Animation
The Liberator Biography
The Liberator Drama
The Liberator History
The Special Need Documentary
The Girl on the Train Thriller
Kidnapped for Christ Documentary
Kidnapped for Christ Drama

198
Kidnapped for Christ News
Ain't Them Bodies Saints Crime
Ain't Them Bodies Saints Drama
Ain't Them Bodies Saints Romance
Oculus Horror
Molly Maxwell Drama
Paperman Animation
Paperman Short
Paperman Comedy
Gasht-e ershad Comedy
Gasht-e ershad Drama
Vergiss mein nicht Documentary
Vergiss mein nicht Biography
Vergiss mein nicht Family
Cuban Fury Comedy
A Muse Drama
A Muse Romance
It's Me, It's Me Comedy
It's Me, It's Me Drama
It's Me, It's Me Sci-Fi
Enough Said Comedy
Enough Said Drama
Enough Said Romance
Medeas Drama
Shana: The Wolf's Music Drama
Shana: The Wolf's Music Family
The Unknown Known Documentary
Head Over Heels Animation
Head Over Heels Short
Head Over Heels Comedy
Loitering with Intent Comedy
Loitering with Intent Drama
Le Week-End Comedy
Le Week-End Drama
Le Week-End Romance
I Am Breathing Documentary
I Am Breathing Biography
Reality Comedy
Women's Day Drama
Gabriel Drama
Gabriel Family
Gabriel Thriller
Home Drama
Too Late Drama
A Heartland Christmas Family
Doomsdays Drama
Still Life Comedy
Still Life Drama

199
The Weight of Elephants Drama
Avengers: Age of Ultron Action
Avengers: Age of Ultron Adventure
Avengers: Age of Ultron Sci-Fi
The Priest's Children Comedy
The Priest's Children Drama
Thy Womb Drama
It's Such a Beautiful Day Animation
It's Such a Beautiful Day Comedy
It's Such a Beautiful Day Drama
Coffee, Kill Boss Comedy
Coffee, Kill Boss Mystery
Cold Harbour Action
Cold Harbour Crime
Cold Harbour Thriller
Farah Goes Bang Comedy
Twenty Feet from Stardom Documentary
Twenty Feet from Stardom History
Twenty Feet from Stardom Music
Moon Man Animation
Moon Man Sci-Fi
Predestination Drama
Predestination Mystery
Predestination Sci-Fi
The Homesman Drama
The Homesman Western
Growing Up and Other Lies Comedy
Les Invisibles Documentary
What If… Drama
What If… Mystery
What If… Romance
The Barkley Marathons: The Race That Eats Its Young Documentary
The Barkley Marathons: The Race That Eats Its Young Adventure
The Barkley Marathons: The Race That Eats Its Young History
Susie's Hope Drama
Susie's Hope Family
The Invitation Thriller
The Last Chance: Diary of Comedians Comedy
Tracers Action
Tracers Crime
Tracers Drama
Trashed Documentary
Richard Pryor: Omit the Logic Documentary
De Marathon Comedy
De Marathon Drama
De Marathon Sport
The Devil's Violinist Biography
The Devil's Violinist Drama

200
The Devil's Violinist Musical
Anomalisa Animation
Anomalisa Comedy
Anomalisa Fantasy
Jimi: All Is by My Side Biography
Jimi: All Is by My Side Drama
Jimi: All Is by My Side Music
The Reunion Drama
My Sweet Orange Tree Drama
Der Bau Thriller
Felony Thriller
Carol Drama
Carol Romance
Ping Pong Summer Comedy
Ping Pong Summer Family
Desert Dancer Biography
Desert Dancer Drama
The Green Inferno Adventure
The Green Inferno Horror
Kokoko Drama
7th Floor Mystery
7th Floor Thriller
Altman Documentary
Belle Drama
Belle Romance
The Eternal Zero Action
The Eternal Zero Drama
The Eternal Zero Mystery
The Family Comedy
The Family Crime
The Family Thriller
The Past Drama
The Past Mystery
The Grand Budapest Hotel Adventure
The Grand Budapest Hotel Comedy
The Grand Budapest Hotel Drama
The Heat Action
The Heat Comedy
The Heat Crime
Ushi Must Marry Comedy
Copperhead Drama
Witching and Bitching Comedy
Witching and Bitching Horror
Concrete Night Drama
Stand Clear of the Closing Doors Drama
A Bit of Bad Luck Comedy
A Bit of Bad Luck Drama
A Bit of Bad Luck Thriller

201
Walking the Camino: Six Ways to Santiago Documentary
Walking the Camino: Six Ways to Santiago Adventure
Ek Thi Daayan Horror
Ek Thi Daayan Romance
Ek Thi Daayan Thriller
The Human Factor Crime
B.A. Pass Drama
Killers Action
Killers Crime
Killers Drama
Why Don't You Play in Hell? Action
Why Don't You Play in Hell? Comedy
Why Don't You Play in Hell? Drama
Open Windows Action
Open Windows Crime
Open Windows Thriller
The Amazing Catfish Comedy
The Amazing Catfish Drama
Santa Paws 2: The Santa Pups Adventure
Santa Paws 2: The Santa Pups Family
Black & White Episode 1: The Dawn of Assault Action
Black & White Episode 1: The Dawn of Assault Comedy
The Human Scale Documentary
The Human Scale News
Frequencies Mystery
Frequencies Romance
Frequencies Sci-Fi
The Wolfpack Documentary
The Wolfpack Biography
The Wolfpack Drama
Inner Worlds, Outer Worlds Documentary
Inner Worlds, Outer Worlds History
36 Drama
Filmistaan Comedy
Rubinrot Drama
Rubinrot Fantasy
Rubinrot Mystery
Three Many Weddings Comedy
Like the Wind Biography
Like the Wind Crime
Like the Wind Drama
Red Obsession Documentary
Red Obsession History
Red Obsession News
12 O'Clock Boys Documentary
12 O'Clock Boys Biography
12 O'Clock Boys Crime
Late Phases Drama

202
Late Phases Horror
Paris è tout prix Comedy
The Princess of Egypt Drama
Boy Upside Down Drama
The Challenger Disaster Drama
Palmipèdarium Animation
Palmipèdarium Short
Palmipèdarium Drama
Butterfly Girl Documentary
Mardock Scramble: The Third Exhaust Animation
Mardock Scramble: The Third Exhaust Sci-Fi
Gloria Comedy
Gloria Drama
Easy Money III: Life Deluxe Crime
Easy Money III: Life Deluxe Drama
Easy Money III: Life Deluxe Thriller
Una famiglia perfetta Comedy
Creep Drama
Creep Horror
G.B.F. Comedy
G.B.F. Romance
Shed No Tears Drama
Shed No Tears Music
Shed No Tears Romance
The Ghost and the Whale Drama
The Ghost and the Whale Mystery
The Ghost and the Whale Thriller
Hanna's Journey Comedy
Hanna's Journey Romance
After Tiller Documentary
After Tiller Biography
After Tiller Drama
Philomena Biography
Philomena Drama
Meet the Hitlers Documentary
Meet the Hitlers Comedy
Meet the Hitlers Drama
Best Kept Secret Documentary
Best Kept Secret Drama
Les coquillettes Comedy
Les coquillettes Drama
Mother, I Love You Drama
Dead Man Talking Comedy
Dead Man Talking Drama
The Invoking Horror
The Invoking Thriller
Antboy Adventure
Antboy Comedy

203
Antboy Family
Exhibition Drama
Goodbye to All That Comedy
Goodbye to All That Drama
Goodbye to All That Romance
Bank$tas Comedy
Bank$tas Crime
The Keeper of Lost Causes Crime
The Keeper of Lost Causes Mystery
The Keeper of Lost Causes Thriller
Chuck Norris vs Communism Documentary
Chuck Norris vs Communism History
Ring of Fire Biography
Ring of Fire Music
Ring of Fire Romance
Anything for Alice Comedy
The Boy Drama
The Boy Horror
The Boy Thriller
Girl Rising Documentary
Molly Moon and the Incredible Book of Hypnotism Family
B-Side Comedy
B-Side Romance
Toy Story of Terror Animation
Toy Story of Terror Short
Toy Story of Terror Adventure
Taken 3 Action
Taken 3 Thriller
Next Goal Wins Documentary
Next Goal Wins Sport
Bianca come il latte, rossa come il sangue Comedy
Bianca come il latte, rossa come il sangue Drama
The Genius of Marian Documentary
The Genius of Marian Drama
The Genius of Marian Family
The Wizards Return: Alex vs. Alex Adventure
The Wizards Return: Alex vs. Alex Comedy
The Wizards Return: Alex vs. Alex Drama
I Am Thor Documentary
I Am Thor Biography
I Am Thor Music
V/H/S/2 Horror
V/H/S/2 Thriller
TINY: A Story About Living Small Documentary
Gone Too Far Comedy
Gone Too Far Drama
Drinking Buddies Comedy
Drinking Buddies Drama

204
Drinking Buddies Romance
Son of a Gun Action
Son of a Gun Crime
Son of a Gun Drama
Clouds of Sils Maria Drama
All That I Am Drama
Compared to What: The Improbable Journey of Barney Frank Documentary
Compared to What: The Improbable Journey of Barney Frank Biography
Compared to What: The Improbable Journey of Barney Frank Drama
The Last Tycoon Action
The Last Tycoon Adventure
The Last Tycoon Drama
Bears Documentary
The Other Shore Documentary
The Other Shore Adventure
The Other Shore Biography
Copenhagen Adventure
Copenhagen Drama
Copenhagen Romance
In the Name of the Son Drama
Something, Anything Drama
Something, Anything Romance
Happy New Year Action
Happy New Year Comedy
Happy New Year Crime
Man Down Drama
Man Down Sci-Fi
Man Down Thriller
The Escape Drama
My Mom Is a Character Comedy
Coming to Terms Drama
Licks Drama
The Single Moms Club Comedy
The Single Moms Club Drama
And So It Goes Comedy
And So It Goes Drama
And So It Goes Romance
Human Capital Drama
The Short Game Documentary
The Short Game Sport
Heavenly Shift Comedy
Heavenly Shift Drama
Left Behind Action
Left Behind Sci-Fi
Left Behind Thriller
Beyond the Edge Documentary
Beyond the Edge Adventure
Beyond the Edge Drama

205
Confession of Murder Action
Confession of Murder Mystery
Confession of Murder Thriller
Don't Cry, Mommy Drama
Don't Cry, Mommy Thriller
Regret! Drama
Regret! Family
Regret! Music
Oxyana Documentary
Oxyana News
Get on Up Biography
Get on Up Drama
Get on Up Music
Paranormal Activity: The Marked Ones Horror
Paranormal Activity: The Marked Ones Thriller
Mr. Turner Biography
Mr. Turner Drama
Mr. Turner History
The Last Five Years Comedy
The Last Five Years Drama
The Last Five Years Musical
Lawrence & Holloman Comedy
Lawrence & Holloman Drama
Attila Marcel Comedy
Elena Documentary
Elena Biography
Elena Drama
Our Vinyl Weighs a Ton: This Is Stones Throw Records Documentary
Our Vinyl Weighs a Ton: This Is Stones Throw Records Biography
Our Vinyl Weighs a Ton: This Is Stones Throw Records Music
We Always Lie to Strangers Documentary
We Always Lie to Strangers Family
We Always Lie to Strangers Music
Manhunt Documentary
Manhunt History
Manhunt War
Delhi Dance Drama
Grand Masti Comedy
Grand Masti Drama
Grand Masti Romance
West Drama
Field of Lost Shoes Action
Field of Lost Shoes Drama
Field of Lost Shoes War
Palo Alto Drama
The Grump Comedy
Which Way Is the Front Line from Here? The Life and Time of Tim Hetherington
Documentary

206
Which Way Is the Front Line from Here? The Life and Time of Tim Hetherington
Biography
Which Way Is the Front Line from Here? The Life and Time of Tim Hetherington War
Doc of the Dead Documentary
Sunshine on Leith Comedy
Sunshine on Leith Drama
Sunshine on Leith Musical
Pussy Riot: A Punk Prayer Documentary
Pussy Riot: A Punk Prayer Biography
Pussy Riot: A Punk Prayer Crime
Stockholm, Pennsylvania Drama
Stockholm, Pennsylvania Thriller
The Pirate Fairy Animation
The Pirate Fairy Adventure
The Pirate Fairy Fantasy
5 to 7 Comedy
5 to 7 Drama
5 to 7 Romance
Ti mene nosis Action
Ti mene nosis Drama
Ti mene nosis Family
Mister John Drama
The Keeping Room Drama
A.C.A.B. All Cats Are Brilliant Drama
The Trials of Muhammad Ali Documentary
The Trials of Muhammad Ali Biography
The Trials of Muhammad Ali Sport
The Fifth Wheel Comedy
The Fifth Wheel Drama
May in the Summer Comedy
May in the Summer Drama
Muscle Shoals Documentary
Muscle Shoals Biography
Muscle Shoals History
Die Welt Drama
Min sèsters bèrn i Afrika Adventure
Min sèsters bèrn i Afrika Comedy
Min sèsters bèrn i Afrika Family
Aloft Drama
Stockholm Stories Drama
Loving Drama
Loving Romance
Ip Man: The Final Fight Action
Ip Man: The Final Fight Biography
Ip Man: The Final Fight Drama
The Crash Reel Documentary
The Crash Reel Biography
The Crash Reel Sport

207
Spongebob Squarepants 4D Attraction: The Great Jelly Rescue Animation
Don't Hug Me I'm Scared Animation
Don't Hug Me I'm Scared Short
Don't Hug Me I'm Scared Fantasy
Narco Cultura Documentary
Wolf Crime
Wolf Drama
Wolf Thriller
Soulmate Mystery
All Eyes and Ears Documentary
All Eyes and Ears Comedy
All Eyes and Ears History
Good Ol' Freda Documentary
Good Ol' Freda Biography
Good Ol' Freda History
Me Him Her Comedy
Poor Us: An Animated History of Poverty Documentary
An Episode in the Life of an Iron Picker Drama
Viva l'Italia Comedy
Where the Trail Ends Documentary
Where the Trail Ends Adventure
Where the Trail Ends Drama
Frontera Drama
Louis C.K. Oh My God Documentary
Louis C.K. Oh My God Comedy
Cold Comes the Night Crime
Cold Comes the Night Drama
Cold Comes the Night Thriller
Helium Drama
Jealousy Drama
Kenau Action
Kenau Adventure
Kenau History
The Dark Matter of Love Documentary
Rosenwald Documentary
Rosenwald Biography
Brave Miss World Documentary
Brave Miss World Biography
Brave Miss World Drama
Medora Documentary
Medora Sport
Escobar: Paradise Lost Crime
Escobar: Paradise Lost Drama
Escobar: Paradise Lost Romance
One Direction: This Is Us Documentary
One Direction: This Is Us Music
They Are All Dead Comedy
They Are All Dead Drama

208
They Are All Dead Family
Anna Nicole Biography
Anna Nicole Drama
Sequoia Comedy
Sequoia Drama
Sequoia Romance
20 Ft Below: The Darkness Descending Thriller
The Suicide Theory Drama
Da geht noch was! Comedy
Da geht noch was! Drama
Da geht noch was! Romance
The Canal Horror
The Canal Mystery
The Canal Thriller
1 Documentary
Tales from the Organ Trade Documentary
Tales from the Organ Trade Crime
Tales from the Organ Trade News
Benji Documentary
See You Next Tuesday Comedy
See You Next Tuesday Drama
The Mighty Angel Drama
Shutter Thriller
Long Live Freedom Comedy
Long Live Freedom Drama
Miguel San Miguel Biography
Miguel San Miguel Music
Rock the Casbah Drama
A Fragile Trust: Plagiarism, Power, and Jayson Blair at the New York Times
Documentary
A Fragile Trust: Plagiarism, Power, and Jayson Blair at the New York Times
Biography
A Fragile Trust: Plagiarism, Power, and Jayson Blair at the New York Times News
The Russian Novel Drama
The Little House Drama
The Expedition to the End of the World Documentary
The Expedition to the End of the World Adventure
The Expedition to the End of the World Comedy
Love Is Blind Drama
Love Is Blind Romance
Risttuules Drama
Risttuules History
I Survived a Zombie Holocaust Comedy
I Survived a Zombie Holocaust Horror
Picas Drama
Nebesnye zheny lugovykh mari Drama
App Thriller
Smart Ass Comedy

209
Smart Ass Drama
Call Me Crazy: A Five Film Drama
Soof Comedy
Soof Romance
Something Good: The Mercury Factor Thriller
Miss Zombie Horror
Life Inside Out Drama
Brand New-U Sci-Fi
The Concubine Drama
The Concubine History
The Enemy Within Drama
Admiral Action
Admiral Adventure
Admiral Biography
American Promise Documentary
Blackfish Documentary
Citizen Koch Documentary
Citizen Koch Drama
Meru Documentary
Meru Action
Meru Adventure
Starship: Rising Action
Starship: Rising Sci-Fi
Little Hope Was Arson Documentary
Little Hope Was Arson Crime
Little Hope Was Arson Drama
The Worst Christmas of My Life Comedy
Lasting Drama
Lasting Romance
Wajma, an Afghan Love Story Drama
Google and the World Brain Documentary
Google and the World Brain Drama
26 Years Drama
26 Years Thriller
The Legend of Barney Thomson Comedy
The Legend of Barney Thomson Crime
Ghadi Comedy
Ghadi Drama
Ghadi Family
The Infinite Man Comedy
Documentarian Documentary
Spark: A Burning Man Story Documentary
Spark: A Burning Man Story Action
Spark: A Burning Man Story Biography
The Casual Vacancy Crime
The Casual Vacancy Drama
The Casual Vacancy Mystery
An Unreal Dream: The Michael Morton Story Documentary

210
An Unreal Dream: The Michael Morton Story Biography
An Unreal Dream: The Michael Morton Story Crime
Matt Shepard Is a Friend of Mine Documentary
Matt Shepard Is a Friend of Mine Biography
Matt Shepard Is a Friend of Mine History
Maidentrip Documentary
Maidentrip Adventure
Maidentrip Biography
Arrambam Action
Arrambam Drama
Arrambam Mystery
Holiday Action
Holiday Drama
Holiday Mystery
Plastic Action
Plastic Comedy
Plastic Crime
Iceman Action
Iceman Comedy
Iceman History
A Million Ways to Die in the West Comedy
A Million Ways to Die in the West Western
The Last Survivors Action
The Last Survivors Thriller
Life According to Sam Documentary
Life According to Sam Biography
Life According to Sam Drama
Je suis supporter du Standard Comedy
Preggoland Comedy
Preggoland Drama
Lilting Drama
Lilting Romance
Quiet Riot: Well Now You're Here, There's No Way Back Documentary
Quiet Riot: Well Now You're Here, There's No Way Back Music
The Town That Dreaded Sundown Horror
The Town That Dreaded Sundown Thriller
Birdman: Or (The Unexpected Virtue of Ignorance) Comedy
Birdman: Or (The Unexpected Virtue of Ignorance) Drama
The Devil's Path Thriller
Seoul Searching Comedy
Seoul Searching Drama
Suddenly Thriller
BMF: The Rise and Fall of a Hip-Hop Drug Empire Documentary
BMF: The Rise and Fall of a Hip-Hop Drug Empire Crime
White Reindeer Comedy
White Reindeer Drama
Boss Action
Boss Comedy

211
Boss Drama
Onneli ja Anneli Family
Hal Animation
Hal Drama
Hal Romance
Studio illegale Comedy
Gulaab Gang Action
Gulaab Gang Drama
The Bachelor Weekend Comedy
Cut Snake Thriller
Septic Man Horror
Nobody's Daughter Haewon Drama
The Tale of The Princess Kaguya Animation
The Tale of The Princess Kaguya Drama
The Tale of The Princess Kaguya Fantasy
Traffic Department Crime
Traffic Department Drama
Valentine Road Documentary
Krampus: The Christmas Devil Action
Krampus: The Christmas Devil Horror
Krampus: The Christmas Devil Thriller
The Survivalist Drama
The Survivalist Sci-Fi
The Survivalist Thriller
La scelta Drama
Life After Beth Comedy
Life After Beth Drama
Life After Beth Horror
Wolfskinder Drama
Wolfskinder History
Julia Horror
Julia Thriller
Me and Earl and the Dying Girl Comedy
Me and Earl and the Dying Girl Drama
Whiplash Drama
Whiplash Music
The Fault in Our Stars Drama
The Fault in Our Stars Romance
Usain Bolt: The Fastest Man Alive Documentary
Avenged Action
Avenged Crime
Avenged Drama
Son of Mine Crime
Son of Mine Drama
Twist of Faith Drama
Pizza Horror
Pizza Romance
Pizza Thriller

212
The Strange Little Cat Comedy
The Strange Little Cat Drama
The Strange Little Cat Family
Scooby-Doo! Mask of the Blue Falcon Animation
Scooby-Doo! Mask of the Blue Falcon Adventure
Scooby-Doo! Mask of the Blue Falcon Family
Yes or No: Come Back to Me Romance
The Garden of Words Animation
The Garden of Words Drama
The Garden of Words Romance
Whatcha Wearin'? Comedy
Whatcha Wearin'? Romance
Ban-chang-ggo Comedy
Ban-chang-ggo Drama
Ban-chang-ggo Romance
In the Courtyard Comedy
In the Courtyard Drama
Lulu femme nue Comedy
Lulu femme nue Drama
Bridge and Tunnel Comedy
Bridge and Tunnel Drama
Bridge and Tunnel Romance
The Major Action
The Major Crime
The Major Drama
Tavarataivas Documentary
Tavarataivas Comedy
Maèna Adventure
Countdown Horror
Countdown Thriller
Quièn matè a Bambi? Comedy
Lenny Cooke Documentary
Lenny Cooke Biography
Lenny Cooke Drama
The Butterfly's Dream Biography
The Butterfly's Dream Drama
The Butterfly's Dream History
Manhattan Romance Comedy
Manhattan Romance Drama
Manhattan Romance Romance
Tyler Perry's A Madea Christmas Comedy
Tyler Perry's A Madea Christmas Drama
Kevin Hart: Let Me Explain Documentary
Kevin Hart: Let Me Explain Comedy
Difret Drama
Force of Execution Action
Force of Execution Crime
Virgin Mountain Drama

213
'71 Action
'71 Drama
'71 Thriller
Umrika Comedy
Umrika Drama
City of Gold Documentary
City of Gold Biography
Keeping Rosy Drama
Keeping Rosy Thriller
Leave to Remain Drama
Marina Biography
Marina Drama
Marina Music
First Cousin Once Removed Documentary
Algorithms Documentary
Algorithms Sport
Blind Drama
The Blue Umbrella Animation
The Blue Umbrella Short
Superman: Unbound Animation
Superman: Unbound Action
Superman: Unbound Adventure
Jug Face Drama
Jug Face Horror
Jug Face Thriller
Jolly LLB Comedy
Jolly LLB Drama
American Vagabond Documentary
Crimes Against Humanity Comedy
Holidaze Drama
Holidaze Family
Holidaze Romance
Bella Vita Documentary
Bella Vita Adventure
Bella Vita Biography
Noble Biography
Noble Drama
Takedown: The DNA of GSP Documentary
Catch Me Daddy Thriller
Closed Curtain Drama
The Giant King Animation
The Giant King Comedy
The Giant King Family
The Activist Thriller
We Cause Scenes Documentary
We Cause Scenes Comedy
Eltern Comedy
The Day That Lasted 21 Years Documentary

214
The Day That Lasted 21 Years History
The Day That Lasted 21 Years Thriller
Tru Love Drama
Tru Love Romance
The Retrieval Drama
The Retrieval History
The Retrieval Western
Ghost in the Shell Arise: Border 1 - Ghost Pain Animation
Ghost in the Shell Arise: Border 1 - Ghost Pain Action
Ghost in the Shell Arise: Border 1 - Ghost Pain Sci-Fi
Tony Benn: Will and Testament Documentary
Tutti contro tutti Comedy
Don't Go to the Reunion Horror
Don't Go to the Reunion Mystery
Don't Go to the Reunion Thriller
September Drama
Love Is Strange Drama
The House at the End of Time Drama
The House at the End of Time Horror
The House at the End of Time Mystery
Queen of the Mountains Action
Queen of the Mountains Biography
Queen of the Mountains Drama
Penumbra Drama
Mr. Kaplan Comedy
Mr. Kaplan Drama
Mr. Kaplan Thriller
The Quiet Hour Drama
The Quiet Hour Sci-Fi
The Quiet Hour Thriller
The Plague Drama
Metro Action
Metro Thriller
The Ghost Army Documentary
The Escape Artist Drama
The Escape Artist Thriller
Matterhorn Comedy
Matterhorn Drama
Northwest Action
Northwest Crime
Northwest Drama
A Long and Happy Life Drama
In the Name Of Drama
In the Name Of Thriller
Carmin Tropical Drama
Senotaji Comedy
The Good Lie Drama
Iron Man: Rise of Technovore Animation

215
Iron Man: Rise of Technovore Action
Iron Man: Rise of Technovore Sci-Fi
My Dog Killer Drama
Whiplash Short
Whiplash Drama
Whiplash Music
The Ghosts in Our Machine Documentary
Bang Bang Baby Drama
Bang Bang Baby Musical
Bang Bang Baby Sci-Fi
The Eternal Return of Antonis Paraskevas Drama
11.6 Drama
11.6 Thriller
Buzzard Comedy
Buzzard Drama
Commando Action
Victor Young Perez Biography
Victor Young Perez Drama
Victor Young Perez History
Ku! Kin-dza-dza Animation
Ku! Kin-dza-dza Comedy
Ku! Kin-dza-dza Sci-Fi
Miracle in Cell No. 7 Comedy
Miracle in Cell No. 7 Drama
LFO Drama
LFO Sci-Fi
10%: What Makes a Hero? Documentary
10%: What Makes a Hero? Adventure
10%: What Makes a Hero? Biography
An Adventure in Space and Time Biography
An Adventure in Space and Time Drama
An Adventure in Space and Time History
UMMAH - Unter Freunden Comedy
UMMAH - Unter Freunden Drama
It's Only Make Believe Drama
Rabbit and Deer Animation
Rabbit and Deer Short
Rabbit and Deer Adventure
What's Left of Us Drama
What's Left of Us Sci-Fi
Miss Julie Drama
Miss Julie Romance
Ruined Heart: Another Lovestory Between a Criminal & a Whore Drama
Ruined Heart: Another Lovestory Between a Criminal & a Whore Musical
Time Lapse Sci-Fi
Time Lapse Thriller
Frau Ella Comedy
Youth Drama

216
I Feel Sleepy Comedy
Love Games Animation
Love Games Short
Love Games Drama
Broken Glass Park Drama
Silent Retreat Horror
Silent Retreat Mystery
Silent Retreat Thriller
The Scopia Effect Horror
The Scopia Effect Sci-Fi
The Scopia Effect Thriller
Tom Dick & Harriet Comedy
Keep on Keepin' On Documentary
Ad Inexplorata Drama
Ad Inexplorata Sci-Fi
Ad Inexplorata Thriller
Dedh Ishqiya Comedy
Dedh Ishqiya Drama
Dedh Ishqiya Romance
In Order of Disappearance Action
In Order of Disappearance Comedy
In Order of Disappearance Crime
The Smoke Seller Animation
The Smoke Seller Short
Hey Bartender Documentary
Call Girl of Cthulhu Comedy
Call Girl of Cthulhu Horror
Broadway Idiot Documentary
Broadway Idiot Music
Broadway Idiot Musical
Kalervo Palsa ja kuriton kèsi Biography
Kalervo Palsa ja kuriton kèsi Comedy
Kalervo Palsa ja kuriton kèsi Drama
History of Fear Drama
History of Fear Mystery
History of Fear Thriller
Het Vonnis Drama
October Gale Drama
October Gale Romance
October Gale Thriller
Night at the Museum: Secret of the Tomb Adventure
Night at the Museum: Secret of the Tomb Comedy
Night at the Museum: Secret of the Tomb Family
Locke Drama
Young Ones Action
Young Ones Drama
Young Ones Sci-Fi
Oliver's Deal Drama

217
Oliver's Deal Mystery
Oliver's Deal Thriller
Fist of Jesus Short
Fist of Jesus Action
Fist of Jesus Comedy
Two Shots Fired Comedy
Two Shots Fired Drama
Saint Laurent Biography
Saint Laurent Drama
Saint Laurent Romance
Yves Saint Laurent Biography
Yves Saint Laurent Drama
Bonnie and Clyde Biography
Bonnie and Clyde Crime
Bonnie and Clyde Drama
Life of a King Drama
HK: Forbidden Super Hero Comedy
Burton and Taylor Biography
Burton and Taylor Drama
AfterDeath Horror
AfterDeath Sci-Fi
AfterDeath Thriller
Peace After Marriage Comedy
Peace After Marriage Drama
Peace After Marriage Romance
Diary of a Chambermaid Drama
Bonobo Comedy
Bonobo Drama
Fury Action
Fury Drama
Fury War
Living Images Comedy
Living Images Drama
Living Images Romance
Miraculum Drama
On the Job Action
On the Job Crime
On the Job Drama
The Riot Club Drama
The Riot Club Thriller
Ida Drama
The King's Surrender Thriller
Blackhat Action
Blackhat Crime
Blackhat Drama
Honeymoon Drama
Papusza Biography
Papusza Drama

218
The Salvation Drama
The Salvation Western
P-51 Dragon Fighter Action
P-51 Dragon Fighter Fantasy
P-51 Dragon Fighter Sci-Fi
Hide and Seek Drama
Hide and Seek Romance
Zeit der Kannibalen Drama
Sharknado Horror
Sharknado Sci-Fi
Korso Drama
Korso Music
Korso Sport
What We Did on Our Holiday Comedy
What We Did on Our Holiday Drama
Berkshire County Horror
Berkshire County Thriller
The Longest Ride Drama
The Longest Ride Romance
Fool's Day Short
Fool's Day Comedy
Fool's Day Drama
Fifi Howls from Happiness Documentary
The Kill Team Documentary
Nobody Wants the Night Drama
Mistaken for Strangers Documentary
Mistaken for Strangers Comedy
Mistaken for Strangers Music
Two Days, One Night Drama
Two Days, One Night Romance
Desolate Drama
Desolate Sci-Fi
Desolate Thriller
Decency Documentary
Will You Still Love Me Tomorrow? Comedy
Will You Still Love Me Tomorrow? Drama
Two: The Story of Roman & Nyro Documentary
Two: The Story of Roman & Nyro Biography
Two: The Story of Roman & Nyro Drama
Pluto Drama
Out of the Blue Comedy
Out of the Blue Drama
Rosewater Biography
Rosewater Drama
Devil's Due Horror
Devil's Due Mystery
Kick-Heart Animation
Kick-Heart Short

219
Kick-Heart Action
The One I Love Comedy
The One I Love Drama
The One I Love Romance
Winter Sleep Drama
The Third Half Drama
The Third Half Sport
Code Black Documentary
Code Black Drama
Quantum Love Drama
Quantum Love Romance
Na kathesai kai na koitas Drama
My Man Crime
My Man Drama
My Man Romance
Phoenix Drama
Phoenix History
So Young Drama
Krot na more Animation
Krot na more Short
Krot na more Adventure
The Life and Mind of Mark DeFriest Documentary
The Life and Mind of Mark DeFriest Animation
The Life and Mind of Mark DeFriest Biography
The Games Maker Adventure
The Games Maker Family
Benvenuto Presidente! Comedy
Faith Connections Documentary
Faith Connections Biography
Faith Connections Drama
Solan og Ludvig - Jul i Flèklypa Animation
Solan og Ludvig - Jul i Flèklypa Family
Veronica Mars Crime
Veronica Mars Drama
Veronica Mars Mystery
The Perfect 46 Drama
The Perfect 46 Sci-Fi
Rigor Mortis Action
Rigor Mortis Drama
Rigor Mortis Horror
Antisocial Horror
Antisocial Sci-Fi
Antisocial Thriller
Pee Mak Comedy
Pee Mak Horror
Pee Mak Romance
WolfCop Comedy
WolfCop Horror

220
Eadweard Drama
Top Five Comedy
Top Five Romance
The Little Death Comedy
The Little Death Drama
The Little Death Romance
Jack Strong Action
Jack Strong Biography
Jack Strong Crime
America: Imagine the World Without Her Documentary
Way Beyond Weight Documentary
Transformers Prime Beast Hunters: Predacons Rising Animation
Transformers Prime Beast Hunters: Predacons Rising Action
Transformers Prime Beast Hunters: Predacons Rising Family
The Interview Action
The Interview Comedy
X/Y Drama
Beloved Sisters Drama
Beloved Sisters History
Beloved Sisters Romance
Love Building Comedy
Gasland Part II Documentary
Je fais le mort Comedy
Jibeuro ganeun gil Drama
Bombay Talkies Drama
The Hybrid Action
The Hybrid Sci-Fi
Darkness on the Edge of Town Crime
Darkness on the Edge of Town Drama
Darkness on the Edge of Town Western
Atlas Shrugged: Who Is John Galt? Drama
Atlas Shrugged: Who Is John Galt? Mystery
Atlas Shrugged: Who Is John Galt? Sci-Fi
Serial (Bad) Weddings Comedy
All of Me Documentary
All of Me Drama
Kingsman: The Secret Service Action
Kingsman: The Secret Service Adventure
Kingsman: The Secret Service Comedy
Leviathan Drama
The Closed Circuit Action
The Closed Circuit Crime
The Closed Circuit Drama
No Thank You Comedy
Tokyo Tribe Drama
Tokyo Tribe Musical
Tokyo Tribe Sci-Fi
Killing Kennedy Drama

221
Killing Kennedy Thriller
The Childhood of a Leader Drama
The Childhood of a Leader Horror
The Childhood of a Leader Mystery
When Animals Dream Drama
When Animals Dream Horror
When Animals Dream Mystery
Everything I Can See From Here Animation
Everything I Can See From Here Short
Everything I Can See From Here Adventure
The Last Call Comedy
The Last Call Drama
Furious 7 Action
Furious 7 Crime
Furious 7 Thriller
The Rise and Rise of Bitcoin Documentary
The Rise and Rise of Bitcoin History
The Rise and Rise of Bitcoin News
Future Shock! The Story of 2000AD Documentary
3 Hearts Drama
3 Hearts Romance
Nothing Bad Can Happen Drama
Nothing Bad Can Happen Thriller
Carmina y amèn. Comedy
Carmina y amèn. Drama
Deadly Virtues: Love.Honour.Obey. Drama
Deadly Virtues: Love.Honour.Obey. Thriller
Blood Punch Horror
Blood Punch Thriller
Fandry Drama
Fandry Family
Silenced Documentary
Silenced Drama
Hawking Documentary
Hawking Biography
Hawking Comedy
Dr. Cabbie Comedy
Dead Snow 2: Red vs. Dead Action
Dead Snow 2: Red vs. Dead Comedy
Dead Snow 2: Red vs. Dead Horror
1987 Biography
1987 Comedy
1987 Drama
Crimi Clowns: De Movie Comedy
Crimi Clowns: De Movie Crime
Crimi Clowns: De Movie Drama
Grand Central Drama
Grand Central Romance

222
Fallen City Action
Fallen City Drama
Fallen City Family
Across the River Horror
Across the River Mystery
Across the River Thriller
Chrysalis Drama
Chrysalis Horror
Chrysalis Sci-Fi
An Apology to Elephants Documentary
An Apology to Elephants Short
Second Coming Drama
Cargo Short
Cargo Drama
Cargo Fantasy
L'autre vie de Richard Kemp Crime
L'autre vie de Richard Kemp Fantasy
L'autre vie de Richard Kemp Thriller
White God Drama
War Story Drama
La fille du 14 juillet Comedy
Der Bunker Comedy
Der Bunker Drama
Der Bunker Horror
Nightmare Code Horror
Nightmare Code Sci-Fi
Nightmare Code Thriller
Pitch Perfect 2 Comedy
Pitch Perfect 2 Music
Grigris Drama
A Touch of Sin Drama
The Missing Picture Documentary
Omar Drama
Omar Thriller
Norte, the End of History Drama
9-Month Stretch Comedy
A Fighting Man Drama
A Fighting Man Sport
Stop the Pounding Heart Documentary
Stop the Pounding Heart Drama
Madras Cafe Action
Madras Cafe Drama
Madras Cafe History
The Auction Drama
Wolf at the Door Crime
Wolf at the Door Drama
Wolf at the Door Thriller
Coherence Sci-Fi

223
Coherence Thriller
Paraèso Romance
Tiger Orange Drama
Amy Documentary
Amy Biography
Amy Music
As Above, So Below Adventure
As Above, So Below Horror
As Above, So Below Mystery
Wish I Was Here Comedy
Wish I Was Here Drama
Life Partners Comedy
Life Partners Romance
Magic in the Moonlight Comedy
Magic in the Moonlight Romance
2 Autumns, 3 Winters Comedy
Nightcrawler Crime
Nightcrawler Thriller
Lucy Action
Lucy Sci-Fi
Lucy Thriller
Shaun the Sheep Movie Animation
Shaun the Sheep Movie Adventure
Shaun the Sheep Movie Comedy
Bad Turn Worse Crime
Bad Turn Worse Drama
Bad Turn Worse Thriller
My Sweet Pepper Land Drama
Buen Dèa, Ramèn Drama
Soodhu Kavvum Comedy
Soodhu Kavvum Crime
Soodhu Kavvum Thriller
William Shatner Presents: Chaos on the Bridge Documentary
William Shatner Presents: Chaos on the Bridge Biography
William Shatner Presents: Chaos on the Bridge Sci-Fi
Ugly Crime
Ugly Drama
Ugly Mystery
The Wonders Comedy
The Wonders Mystery
Passione sinistra Comedy
Sarah Silverman: We Are Miracles Comedy
The Blood Lands Horror
The Blood Lands Mystery
The Blood Lands Thriller
Black or White Drama
Cash Only Crime
Cash Only Drama

224
Cash Only Thriller
Chef Adventure
Chef Comedy
Chef Drama
Macbeth Drama
Macbeth History
I Origins Drama
The Spoils of Babylon Comedy
Enklava Drama
The Saratov Approach Action
The Saratov Approach Drama
Patrick's Day Drama
Patrick's Day Family
Patrick's Day Romance
La mossa del pinguino Comedy
Farewell Baghdad Drama
Hippocrates: Diary of a French Doctor Drama
99 Homes Drama
Manglehorn Drama
A Horse for Summer Drama
A Horse for Summer Family
Turks & Caicos Action
Turks & Caicos Drama
Turks & Caicos Mystery
Mary Loss of Soul Horror
Mary Loss of Soul Thriller
Thou Gild'st the Even Drama
Thou Gild'st the Even Fantasy
Thou Gild'st the Even Romance
Bang Bang Action
Bang Bang Adventure
Bang Bang Comedy
My Little Pony: Equestria Girls Animation
My Little Pony: Equestria Girls Comedy
My Little Pony: Equestria Girls Family
Insurgent Adventure
Insurgent Sci-Fi
Insurgent Thriller
Gregory Go Boom Short
Gregory Go Boom Comedy
Gregory Go Boom Drama
Wolf Totem Adventure
A Nightingale Falling Drama
A Nightingale Falling History
A Nightingale Falling War
The Signal Sci-Fi
The Signal Thriller
Obvious Child Comedy

225
Obvious Child Drama
John Wick Action
John Wick Thriller
Manuscripts Don't Burn Drama
The Young Kieslowski Comedy
The Young Kieslowski Drama
The Young Kieslowski Romance
Bethlehem Drama
Bethlehem Thriller
Double Play: James Benning and Richard Linklater Documentary
Double Play: James Benning and Richard Linklater Biography
Over Your Dead Body Horror
Miss and the Doctors Comedy
Miss and the Doctors Drama
The Dead 2: India Horror
The Other One Drama
The Other One Horror
The Other One Mystery
Dual Drama
20,000 Days on Earth Documentary
20,000 Days on Earth Drama
20,000 Days on Earth Music
God's Pocket Crime
God's Pocket Drama
Blood of My Blood Drama
Blood of My Blood History
Nice and Easy Comedy
Thou Gild'st the Even Drama
Thou Gild'st the Even Fantasy
Thou Gild'st the Even Romance
My So-Called Father Drama
The Gambler Drama
The Gambler Thriller
The Lady in Number 6: Music Saved My Life Documentary
The Lady in Number 6: Music Saved My Life Short
The Lady in Number 6: Music Saved My Life Biography
The 2013 Rock and Roll Hall of Fame Induction Ceremony Music
Margarita, with a Straw Drama
In the Name of My Daughter Drama
Siddharth Drama
Intimate Parts Comedy
Intimate Parts Drama
Intimate Parts Romance
Hard Sun Drama
Hard Sun Romance
Motylki Drama
Motylki Romance
Far from the Madding Crowd Drama

226
Far from the Madding Crowd Romance
The Connection Action
The Connection Crime
The Connection Thriller
Far from Men Drama
Earth's Golden Playground Documentary
Earth's Golden Playground News
Common Crime
Common Drama
A Most Violent Year Action
A Most Violent Year Crime
A Most Violent Year Drama
All This Mayhem Documentary
Klumpfisken Comedy
Klumpfisken Drama
Our Sunhi Comedy
Our Sunhi Drama
Our Sunhi Romance
JFK: The Smoking Gun Documentary
Bros Before Hos Comedy
Corazèn de leèn Comedy
Corazèn de leèn Drama
Corazèn de leèn Romance
Room 8 Short
Room 8 Drama
Room 8 Fantasy
The Living Crime
The Living Drama
The Living Mystery
The Pool Horror
Death Comes to Pemberley Drama
Death Comes to Pemberley Mystery
Death Comes to Pemberley Romance
Kung Fu Killer Action
Kung Fu Killer Thriller
Che strano chiamarsi Federico Biography
Happy Christmas Comedy
Happy Christmas Drama
Spanish Affair Comedy
Once My Mother Family
Once My Mother History
Once My Mother War
The White Storm Action
The White Storm Crime
The White Storm Drama
What a Fuck Am I Doing on This Battlefield Documentary
Love Steaks Comedy
Love Steaks Drama

227
Love Steaks Romance
The Galapagos Affair: Satan Came to Eden Documentary
The Galapagos Affair: Satan Came to Eden Biography
The Galapagos Affair: Satan Came to Eden Crime
Rocks in My Pockets Animation
Rocks in My Pockets Comedy
Rocks in My Pockets Drama
The Anomaly Action
The Anomaly Sci-Fi
The Anomaly Thriller
The Road Within Comedy
The Road Within Drama
The Hunters Adventure
Grace Drama
Wood Job! Comedy
Comet Comedy
Comet Drama
Comet Romance
Raspberry Boat Refugee Comedy
Under the Electric Sky Documentary
Under the Electric Sky Music
The Face of an Angel Drama
Hot Pursuit Action
Hot Pursuit Comedy
Hot Pursuit Crime
Secretly, Greatly Action
Secretly, Greatly Comedy
Secretly, Greatly Drama
They Have Escaped Drama
Montage Thriller
Cold Eyes Action
Cold Eyes Crime
The Foxy Merkins Adventure
The Foxy Merkins Comedy
A Fuller Life Documentary
A Fuller Life Biography
A Fuller Life Crime
Hwayi: A Monster Boy Action
Hwayi: A Monster Boy Thriller
Kundo: Age of the Rampant Action
Kundo: Age of the Rampant Drama
The Purge: Anarchy Action
The Purge: Anarchy Horror
The Purge: Anarchy Sci-Fi
Joanna Documentary
Joanna Biography
Joanna Drama
The Nightingale Drama

228
The Nightingale Family
Violette Biography
Violette Drama
Violette Romance
Apartment Troubles Comedy
Apartment Troubles Drama
Alex of Venice Drama
Chocolate Strawberry Vanilla Comedy
Chocolate Strawberry Vanilla Drama
21 Days Horror
21 Days Thriller
Back Issues: The Hustler Magazine Story Documentary
Back Issues: The Hustler Magazine Story Biography
Back Issues: The Hustler Magazine Story Drama
Bombay Velvet Crime
Bombay Velvet Drama
Bombay Velvet Thriller
The Girl in the Book Drama
The Guest Action
The Guest Mystery
The Guest Thriller
The Theory of Everything Biography
The Theory of Everything Drama
The Theory of Everything Romance
Twinsters Documentary
Twinsters Biography
Twinsters Family
The Hundred-Foot Journey Comedy
The Hundred-Foot Journey Drama
Planes: Fire & Rescue Animation
Planes: Fire & Rescue Adventure
Planes: Fire & Rescue Comedy
Get a Horse! Animation
Get a Horse! Short
Get a Horse! Comedy
Patema Inverted Animation
Patema Inverted Adventure
Patema Inverted Drama
Boa Sorte Drama
9-Man Documentary
9-Man History
9-Man Sport
Suck Me Shakespeer Comedy
Shuddh Desi Romance Comedy
Shuddh Desi Romance Drama
Shuddh Desi Romance Romance
The Terror Live Action
The Terror Live Crime

229
The Terror Live Thriller
L'arte della felicitè Animation
L'arte della felicitè Drama
Beneath Horror
The Stalker Drama
The Stalker Thriller
Spaghetti Story Comedy
Yosemite Drama
Young Detective Dee: Rise of the Sea Dragon Action
Young Detective Dee: Rise of the Sea Dragon Adventure
Young Detective Dee: Rise of the Sea Dragon Drama
Halfway Comedy
Halfway Drama
Eyes of a Thief Drama
Camp X-Ray Drama
Camp X-Ray War
Window Wonderland Comedy
Window Wonderland Family
Window Wonderland Romance
The Summer of Sangaile Drama
The Summer of Sangaile Romance
Homeland Drama
John Apple Jack Comedy
John Apple Jack Romance
De nieuwe wildernis Documentary
Cha cha cha Crime
Cha cha cha Drama
Cha cha cha Thriller
No Stranger Than Love Comedy
No Stranger Than Love Romance
Super Buddies Family
Outliving Emily Drama
Noah Animation
Noah Short
Noah Comedy
Mary Kom Biography
Mary Kom Drama
Mary Kom Sport
Kènig von Deutschland Comedy
Unbeatable Action
Unbeatable Drama
Traitors Drama
Amour fou Comedy
Amour fou Drama
Pete's Christmas Family
Pete's Christmas Fantasy
The 11th Hour Drama
The 11th Hour Thriller

230
Very Ordinary Couple Comedy
Very Ordinary Couple Drama
Very Ordinary Couple Romance
The Color of Rain Drama
Cantinflas Biography
Cantinflas Comedy
Cantinflas Drama
Boy Meets Girl Comedy
Boy Meets Girl Drama
Boy Meets Girl Romance
The Water Diviner Drama
The Water Diviner War
The Face Reader Drama
The Face Reader History
Mike Tyson: Undisputed Truth Comedy
The Goob Drama
The Goob Romance
The Portal Short
The Portal Comedy
The Portal Fantasy
Stromberg - Der Film Comedy
Adama Animation
Wild Tales Comedy
Wild Tales Drama
Wild Tales Thriller
Olive Kitteridge Drama
Sur le chemin de l'ècole Documentary
Babysitting Comedy
Mia Madre Drama
Happy Ending Comedy
Happy Ending Romance
The Flying Man Short
The Flying Man Action
The Flying Man Fantasy
Titli Crime
Titli Drama
Titli Thriller
Not My Day Action
Not My Day Adventure
Not My Day Comedy
Faults Comedy
Faults Crime
Faults Drama
The Honourable Woman Drama
The Honourable Woman Thriller
The Little Queen Biography
The Little Queen Drama
The Little Queen Sport

231
Blue Exorcist: The Movie Animation
Blue Exorcist: The Movie Fantasy
Por un puèado de besos Drama
Rurèni Kenshin: Densetsu no saigo-hen Action
Rurèni Kenshin: Densetsu no saigo-hen Adventure
Rurèni Kenshin: Densetsu no saigo-hen Drama
My Class Documentary
My Class Drama
Inbetween Worlds Drama
The Rule of Accident Drama
Echoes Drama
Echoes Horror
Echoes Thriller
Meu Passado Me Condena: O Filme Comedy
Meu Passado Me Condena: O Filme Romance
The Guide Drama
The Guide History
The Crossing Drama
WhoAmI Thriller
Nightingale Drama
Atharintiki Daaredi Action
Atharintiki Daaredi Comedy
Atharintiki Daaredi Drama
Mr Hublot Animation
Mr Hublot Short
Mr Hublot Comedy
The Wonders Drama
Getèlio Biography
Getèlio Drama
Getèlio History
Li'l Quinquin Comedy
Li'l Quinquin Crime
Li'l Quinquin Mystery
SuperBob Action
SuperBob Comedy
SuperBob Romance
Un ragazzo d'oro Drama
Of Mind and Music Drama
Of Mind and Music Music
Documented Documentary
Documented Biography
Documented Family
Cru Drama
No One's Child Drama
#chicagoGirl: The Social Network Takes on a Dictator Documentary
#chicagoGirl: The Social Network Takes on a Dictator Action
#chicagoGirl: The Social Network Takes on a Dictator Drama
Before I Disappear Drama

232
The New Black Documentary
The New Black Drama
The New Black News
Cub Adventure
Cub Horror
Manos sucias Drama
Manos sucias Thriller
Break Point Comedy
Break Point Sport
Gett: The Trial of Viviane Amsalem Drama
Learning to Drive Comedy
Learning to Drive Drama
Learning to Drive Romance
If I Had Wings Drama
If I Had Wings Family
Jackass Presents: Bad Grandpa Comedy
The Beat Beneath My Feet Comedy
The Beat Beneath My Feet Drama
The Beat Beneath My Feet Family
Isabelle Dances Into the Spotlight Drama
Sole a catinelle Comedy
Marvel One-Shot: Agent Carter Short
Marvel One-Shot: Agent Carter Action
Marvel One-Shot: Agent Carter Adventure
The Forbidden Room Comedy
The Forbidden Room Drama
The Forbidden Room Mystery
Grace Horror
Grace Thriller
Our Curse Documentary
Our Curse Short
Our Curse Drama
The Phone Call Short
The Phone Call Drama
Christmas in Conway Drama
Christmas in Conway Romance
Bad Hair Drama
Supermensch: The Legend of Shep Gordon Documentary
Supermensch: The Legend of Shep Gordon Biography
Supermensch: The Legend of Shep Gordon Music
Of Horses and Men Comedy
Of Horses and Men Drama
Of Horses and Men Romance
L'intrepido Comedy
Flowers in the Attic Drama
Flowers in the Attic Romance
Flowers in the Attic Thriller
Appropriate Behaviour Comedy

233
Appropriate Behaviour Drama
Appropriate Behaviour Romance
Miss Violence Drama
Zoran, il mio nipote scemo Comedy
Zoran, il mio nipote scemo Family
The Invisible Boy Adventure
The Invisible Boy Comedy
The Invisible Boy Fantasy
We'll Never Have Paris Comedy
We'll Never Have Paris Romance
Spy Action
Spy Comedy
Spy Crime
Crocodile Gennadiy Documentary
Crocodile Gennadiy Biography
Crocodile Gennadiy Drama
Kelly & Cal Comedy
Kelly & Cal Drama
The Pretor Comedy
Goodnight Mommy Horror
Goodnight Mommy Thriller
Rosemary's Baby Drama
Rosemary's Baby Horror
Rosemary's Baby Mystery
Say 'I Love You' Drama
Say 'I Love You' Romance
Los Flamencos Adventure
Los Flamencos Comedy
My Last Year with the Nuns Biography
My Last Year with the Nuns Comedy
My Last Year with the Nuns Drama
Magical Girl Drama
Magical Girl Thriller
Tim's Vermeer Documentary
Tim's Vermeer History
The Treatment Mystery
The Treatment Thriller
Sorrow and Joy Drama
Dinosaur 13 Documentary
Eden Drama
Eden Music
Advantageous Drama
Advantageous Family
Advantageous Sci-Fi
The Identity Theft of Mitch Mustain Documentary
People in Places Comedy
People in Places Drama
Burt's Buzz Documentary

234
The Fake Animation
The Fake Drama
The Fake Thriller
At Berkeley Documentary
Life Feels Good Drama
Memphis Drama
Cymbeline Drama
Listen Up Philip Comedy
Listen Up Philip Drama
Monk with a Camera Documentary
Monk with a Camera Biography
Monk with a Camera News
Diet of Sex Comedy
Diet of Sex Drama
Diet of Sex Romance
Bakit hindi ka crush ng crush mo? Comedy
Bakit hindi ka crush ng crush mo? Drama
Bakit hindi ka crush ng crush mo? Romance
The Snow White Murder Case Drama
The Snow White Murder Case Mystery
The Inbetweeners 2 Comedy
Summertime Comedy
Sous les jupes des filles Comedy
How to Build a Better Boy Family
How to Build a Better Boy Sci-Fi
Tusk Comedy
Tusk Drama
Tusk Horror
52 Tuesdays Drama
52 Tuesdays Family
House of Manson Biography
House of Manson Crime
House of Manson Drama
Ghoul Horror
Ghoul Thriller
Bèrning Action
Bèrning Comedy
Story of My Death Drama
When Evening Falls on Bucharest or Metabolism Drama
The Masked Saint Action
The Masked Saint Biography
The Masked Saint Crime
Manakamana Documentary
Coast of Death Documentary
Coast of Death Drama
Coast of Death Family
Love Is the Perfect Crime Crime
Love Is the Perfect Crime Thriller

235
The Silly Ones and the Stupid Ones Drama
The Silly Ones and the Stupid Ones Family
WNUF Halloween Special Comedy
WNUF Halloween Special Horror
Paris Follies Comedy
Garden Lovers Documentary
Garden Lovers Comedy
Garden Lovers Drama
See No Evil 2 Horror
Gabrielle Drama
Gabrielle Music
Gabrielle Romance
Watermark Documentary
Believe Me Comedy
Believe Me Drama
Foreign Bodies Drama
Foreign Bodies Family
The World of Kanako Crime
The World of Kanako Drama
The World of Kanako Mystery
Misconception Documentary
Jimmy's Hall Drama
Luton Drama
All Stars Comedy
10.000 Km Comedy
10.000 Km Drama
10.000 Km Romance
The Heart Machine Drama
The Heart Machine Thriller
Circle Drama
Circle Horror
Circle Sci-Fi
Club Sandwich Comedy
Lizzie Borden Took an Ax Crime
Lizzie Borden Took an Ax Drama
Lizzie Borden Took an Ax Mystery
Stray Dogs Drama
Take Care Comedy
Take Care Drama
Take Care Romance
'Til Madness Do Us Part Documentary
Oktober November Drama
Rags & Tatters Biography
Rags & Tatters Drama
Nasty Baby Drama
Overheard 3 Thriller
Redemption Documentary
Redemption Short

236
Little Accidents Drama
Beyond the Lights Drama
Beyond the Lights Music
Pasolini Biography
Pasolini Drama
Coming Home Drama
Freistatt Drama
Der Banker: Master of the Universe Documentary
Sucker Comedy
Phantom Halo Crime
Phantom Halo Drama
Phantom Halo Thriller
She's Lost Control Drama
Catch a Christmas Star Family
Marie's Story Biography
Misery Loves Comedy Documentary
Misery Loves Comedy Comedy
Houdini Biography
Houdini Drama
Tim Maia Biography
Tim Maia Drama
Tim Maia Music
Jimmy Vestvood: Amerikan Hero Comedy
Son of Batman Animation
Son of Batman Action
Son of Batman Adventure
Batman: Assault on Arkham Animation
Batman: Assault on Arkham Action
Batman: Assault on Arkham Crime
Black Mountain Side Horror
Black Mountain Side Thriller
Amira & Sam Comedy
Amira & Sam Drama
Amira & Sam Romance
The Absent One Crime
The Absent One Thriller
Hacker's Game Drama
Hacker's Game Romance
Hacker's Game Thriller
Der Nachtmahr Drama
Der Nachtmahr Mystery
The Sound of Music Live! Biography
The Sound of Music Live! Drama
The Sound of Music Live! Family
Our Man in Tehran Documentary
Our Man in Tehran History
Heropanti Action
Heropanti Romance

237
Finding Fanny Comedy
Finding Fanny Drama
Finding Fanny Romance
A Small September Affair Drama
A Small September Affair Mystery
A Small September Affair Romance
The Journey Comedy
The Journey Drama
The Journey Family
Prison Terminal: The Last Days of Private Jack Hall Documentary
Prison Terminal: The Last Days of Private Jack Hall Short
Prison Terminal: The Last Days of Private Jack Hall Biography
Belle and Sebastian Adventure
Wavemakers Documentary
Desierto Drama
Let Us Prey Horror
The Referee Comedy
Thunder and the House of Magic Animation
Thunder and the House of Magic Adventure
Thunder and the House of Magic Comedy
The Circle Documentary
The Circle Biography
The Circle Drama
A Brilliant Young Mind Comedy
A Brilliant Young Mind Drama
Never Tear Us Apart: The Untold Story of INXS Drama
Leopardi Biography
Leopardi Drama
Leopardi History
Listening Drama
Listening Sci-Fi
Listening Thriller
Wish Drama
The Geographer Drank His Globe Away Adventure
The Geographer Drank His Globe Away Drama
Partisan Drama
Partisan Thriller
Here Be Dragons Documentary
Honeytrap Crime
Honeytrap Drama
Honeytrap Romance
Hello, My Name Is Frank Comedy
Hello, My Name Is Frank Drama
The Farewell Party Comedy
The Farewell Party Drama
Ballet 422 Documentary
Ballet 422 Music
Ballet 422 Sport

238
The Condemned Documentary
The Condemned Crime
Ciudad Delirio Comedy
Ciudad Delirio Romance
Justin Bieber's Believe Documentary
Justin Bieber's Believe Music
The Benefactor Drama
Sleeping with Other People Comedy
Mr. Holmes Crime
Mr. Holmes Drama
Mr. Holmes Mystery
The Greggs Short
The Greggs Comedy
The Greggs Drama
Pride Biography
Pride Comedy
Pride Drama
Fool Circle Comedy
Fool Circle Drama
Room Drama
Theeb Adventure
Theeb Drama
Theeb Thriller
Hartenstraat Romance
Sacro GRA Documentary
The Diary of a Teenage Girl Drama
The Diary of a Teenage Girl Romance
Sotto una buona stella Comedy
The Villain Action
The Villain Crime
The Villain Drama
Bei tou zou de na wu nian Romance
Consequences Crime
Consequences Drama
Consequences Thriller
Dukhtar Drama
Dukhtar Thriller
Be My Cat: A Film for Anne Horror
Be My Cat: A Film for Anne Mystery
Be My Cat: A Film for Anne Thriller
Honeymoon Horror
Honeymoon Romance
Honeymoon Thriller
Giovanni's Island Animation
Giovanni's Island Drama
Giovanni's Island History
Feuten: Het Feestje Drama
10 Minutes Drama

239
Sonyeo Drama
The Boy Next Door Mystery
The Boy Next Door Thriller
Factory Girl Drama
Factory Girl Romance
The Boy and the World Animation
The Boy and the World Adventure
The Boy and the World Family
Asier ETA biok Documentary
Asier ETA biok Biography
Asier ETA biok Family
The New Girlfriend Drama
The Wolf and the Lamb Crime
The Wolf and the Lamb Mystery
The Wolf and the Lamb Thriller
Hellion Drama
Hellion Thriller
Class Enemy Drama
Gorko! Comedy
Sleepless in New York Documentary
Sleepless in New York Drama
Sleepless in New York Romance
Insidious: Chapter 3 Drama
Insidious: Chapter 3 Horror
Insidious: Chapter 3 Thriller
Free Range/Ballad on Approving of the World Drama
Breakfast with Jonny Wilkinson Comedy
The Great Martian War 1913 - 1917 Documentary
The Great Martian War 1913 - 1917 Drama
The Great Martian War 1913 - 1917 Sci-Fi
The Return to Homs Documentary
The Return to Homs Biography
The Return to Homs History
If You Don't, I Will Comedy
Relationship Status: It's Complicated Comedy
Relationship Status: It's Complicated Romance
Symphony No. 42 Animation
Symphony No. 42 Short
Symphony No. 42 Mystery
My Prairie Home Documentary
My Prairie Home Music
The Kingdom of Dreams and Madness Documentary
Slow West Action
Slow West Thriller
Slow West Western
Boats Short
Boats Comedy
Neko no shukai Animation

240
Neko no shukai Short
Son of God Biography
Son of God Drama
Actress Documentary
Actress Drama
Beltracchi: The Art of Forgery Documentary
Beltracchi: The Art of Forgery Biography
Beltracchi: The Art of Forgery Crime
Two Raging Grannies Documentary
A LEGO Brickumentary Documentary
Alphabet Documentary
Dreamcatcher Documentary
Dreamcatcher Crime
Dreamcatcher Family
The Nostalgist Short
The Nostalgist Adventure
The Nostalgist Fantasy
The Last Man on the Moon Documentary
The Last Man on the Moon Adventure
The Last Man on the Moon Biography
A Brony Tale Documentary
Uncle John Crime
Uncle John Drama
Uncle John Mystery
The Master Plan Action
The Master Plan Adventure
The Master Plan Comedy
Yalom's Cure Documentary
Yalom's Cure Biography
Super Duper Alice Cooper Documentary
Super Duper Alice Cooper Biography
Super Duper Alice Cooper Music
The Blue Room Crime
The Blue Room Thriller
Still the Water Drama
Still the Water Romance
Island of Lemurs: Madagascar Documentary
Island of Lemurs: Madagascar Short
Island of Lemurs: Madagascar Adventure
Spare Parts Drama
Becoming Bulletproof Documentary
Becoming Bulletproof Western
It Follows Horror
It Follows Thriller
I'll See You in My Dreams Comedy
I'll See You in My Dreams Drama
Apocalyptic Drama
Apocalyptic Horror

241
Tutta colpa di Freud Comedy
The 10 Year Plan Comedy
The 10 Year Plan Romance
Sword Art Online Extra Edition Animation
The Redwood Massacre Fantasy
The Redwood Massacre Horror
SlingShot Documentary
SlingShot Biography
SlingShot News
Violent Drama
Charlie's Country Drama
Trailer Park Boys: Don't Legalize It Comedy
Trailer Park Boys: Don't Legalize It Crime
Trailer Park Boys: Don't Legalize It Drama
A Estrada 47 Drama
A Estrada 47 History
A Estrada 47 War
The Boxcar Children Animation
The Boxcar Children Adventure
The Boxcar Children Family
The Empty Hours Drama
The Empty Hours Romance
Above and Below Documentary
Above and Below Adventure
Above and Below Drama
Emergency Exit: Young Italians Abroad Documentary
Emergency Exit: Young Italians Abroad Biography
Emergency Exit: Young Italians Abroad Drama
Little England Drama
Little England Romance
Marshland Crime
Marshland Thriller
Hotori no sakuko Drama
Red Family Drama
The Owners Drama
Fish & Cat Drama
Fish & Cat Mystery
Zurich Drama
Stratos Crime
Stratos Drama
The Wrath of Vajra Action
The Wrath of Vajra Fantasy
Saphirblau Drama
Saphirblau Fantasy
Saphirblau Mystery
Stray Dog Documentary
Stray Dog War
Ivory Tower Documentary

242
Ivory Tower Family
Ivory Tower History
The Seventh Fire Documentary
The Seventh Fire Drama
Kumiko, the Treasure Hunter Drama
Concerning Violence Documentary
Concerning Violence Drama
Concerning Violence History
The Case Against 8 Documentary
The Case Against 8 Biography
The Case Against 8 News
The Overnighters Documentary
The Overnighters Drama
Bloody Knuckles Comedy
Bloody Knuckles Horror
Red Army Documentary
Red Army Biography
Red Army History
Pulp: a Film About Life, Death & Supermarkets Documentary
Pulp: a Film About Life, Death & Supermarkets Music
Seventh Code Thriller
Han Gong-ju Drama
Blowfly Park Drama
Blowfly Park Thriller
The Immortalists Documentary
The Immortalists Drama
The Sixties Documentary
The Sixties History
The Internet's Own Boy: The Story of Aaron Swartz Documentary
The Internet's Own Boy: The Story of Aaron Swartz Biography
The Internet's Own Boy: The Story of Aaron Swartz Crime
Jackie & Ryan Drama
The Mend Comedy
The Mend Drama
Ambassada Comedy
Hin und weg Comedy
Hin und weg Drama
Manson Family Vacation Comedy
Manson Family Vacation Drama
Manson Family Vacation Thriller
Creative Control Drama
Tale of Tales Fantasy
Tale of Tales Romance
Suburban Gothic Comedy
Suburban Gothic Horror
Suburban Gothic Romance
The Saboteurs Drama
The Saboteurs History

243
The Saboteurs War
Land Ho! Adventure
Land Ho! Comedy
Arabian Nights: Volume 1 - The Restless One Drama
Leave The World Behind Documentary
Leave The World Behind Music
Two Step Crime
Two Step Drama
Two Step Thriller
The Great Alone Documentary
The Great Alone Adventure
The Great Alone Drama
Once in a Lifetime Drama
Equals Drama
Equals Sci-Fi
Samurai Hustle Comedy
Uzumasa Limelight Action
Uzumasa Limelight Drama
Just Jim Comedy
Wind Animation
Wind Short
Wind Comedy
The Falling Drama
The Falling Mystery
Rams Drama
Good Kill Drama
Good Kill Thriller
Animals Drama
Eila, Rampe ja Likka Comedy
The Midwife Drama
The Midwife Romance
The Midwife War
The Babushkas of Chernobyl Documentary
Paternity Leave Comedy
Paternity Leave Romance
Stung Comedy
Stung Horror
One Last Hug: Three Days at Grief Camp Documentary
One Last Hug: Three Days at Grief Camp Short
One Last Hug: Three Days at Grief Camp Family
Boychoir Drama
The Mystery of Happiness Comedy
The Mystery of Happiness Drama
The Mystery of Happiness Romance
Haemoo Drama
A Second Chance Drama
A Second Chance Thriller
Bayonetta: Bloody Fate Animation

244
Bayonetta: Bloody Fate Action
As We Were Dreaming Drama
Supervention Documentary
Supervention Sport
The Reunion 2: The Funeral Comedy
Vessel Documentary
Vessel Adventure
Vessel Biography
Castles in the Sky Biography
Castles in the Sky Drama
Castles in the Sky History
The Confines Horror
The Confines Mystery
The Confines Thriller
Youth Drama
Deep Web Documentary
Women Who Flirt Comedy
Mala Mala Documentary
Mala Mala Biography
Mala Mala Drama
Beyond Beauty: Taiwan from Above Documentary
Beyond Beauty: Taiwan from Above Drama
Still Alice Drama
The Trip to Bountiful Drama
Boys Drama
Boys Romance
She's Beautiful When She's Angry Documentary
She's Beautiful When She's Angry History
Yasmine Action
Torrente 5 Action
Torrente 5 Comedy
Queen Adventure
Queen Comedy
Queen Drama
Annabelle Horror
Annabelle Mystery
Tommy Cooper: Not Like That, Like This Biography
Next Time I'll Aim for the Heart Thriller
Un altro mondo Documentary
Un altro mondo History
Whitey: United States of America v. James J. Bulger Documentary
Whitey: United States of America v. James J. Bulger Biography
Whitey: United States of America v. James J. Bulger Crime
Paper Planes Family
Eu Nèo Faèo a Menor Ideia do Que Eu Tè Fazendo Com a Minha Vida Comedy
Eu Nèo Faèo a Menor Ideia do Que Eu Tè Fazendo Com a Minha Vida Drama
Imperial Dreams Drama
Middle of the Road Comedy

245
Stand by Me Doraemon Animation
Stand by Me Doraemon Comedy
Stand by Me Doraemon Drama
This Isn't Funny Comedy
This Isn't Funny Drama
This Isn't Funny Romance
About a Girl Comedy
About a Girl Drama
Stille hjerte Drama
Maya the Bee Movie Animation
Maya the Bee Movie Adventure
Maya the Bee Movie Comedy
Maicol Jecson Comedy
Burying the Ex Comedy
Burying the Ex Horror
Firestorm Action
Firestorm Crime
Firestorm Thriller
Twelve Trees of Christmas Romance
Blue Sky Bones Drama
Entertainment Drama
Hungry Hearts Drama
Hungry Hearts Thriller
DamNation Documentary
DamNation Adventure
Parasyte: Part 1 Horror
Parasyte: Part 1 Sci-Fi
1001 Grams Drama
Stereo Thriller
Coda Animation
Coda Short
Coda Drama
Stealing Cars Drama
As the Gods Will Horror
As the Gods Will Thriller
Adios Carmen Drama
Deliverance Creek Drama
We Come as Friends Documentary
Breathe Drama
Awaken Action
Awaken Horror
Awaken Thriller
Guidance Comedy
Wild in Blue Romance
Wild in Blue Thriller
The Mafia Only Kills in Summer Comedy
The Mafia Only Kills in Summer Crime
Purgatorio Horror

246
Purgatorio Thriller
The Gunfighter Short
The Gunfighter Comedy
The Gunfighter Western
Polycarp Drama
Polycarp History
Mary Is Happy, Mary Is Happy Drama
Redeemer Action
Redeemer Crime
700 Sundays Biography
700 Sundays Comedy
700 Sundays Drama
Naz & Maalik Adventure
Naz & Maalik Comedy
Naz & Maalik Drama
Six by Sondheim Documentary
The Gabby Douglas Story Biography
The Gabby Douglas Story Drama
The Gabby Douglas Story Sport
The Taking of Deborah Logan Horror
The Taking of Deborah Logan Mystery
The Taking of Deborah Logan Thriller
Haider Crime
Haider Drama
Haider Romance
Short Peace Animation
Short Peace Fantasy
Short Peace Sci-Fi
The Legend of Longwood Adventure
The Legend of Longwood Drama
The Legend of Longwood Family
Miss India America Comedy
Miss India America Drama
Miss India America Family
Evaporating Borders Documentary
Evaporating Borders Drama
Sicario Action
Sicario Crime
Sicario Drama
Daawat-e-Ishq Comedy
Daawat-e-Ishq Drama
Daawat-e-Ishq Romance
When Marnie Was There Animation
When Marnie Was There Drama
When Marnie Was There Family
Young Tiger Drama
No No: A Dockumentary Documentary
No No: A Dockumentary Sport

247
Samba Comedy
Samba Drama
The Dead Lands Action
The Roosevelts: An Intimate History Documentary
The Lion's Mouth Opens Documentary
The Lion's Mouth Opens Short
The Lion's Mouth Opens Biography
Tajja: sineui son Crime
Tajja: sineui son Drama
Ciencias naturales Drama
The Attorney Drama
The Suspect Action
The Suspect Thriller
Nachthelle Mystery
Mythica: A Quest for Heroes Action
Mythica: A Quest for Heroes Adventure
Mythica: A Quest for Heroes Fantasy
Glassland Drama
The Man from Oran Drama
Timbuktu Drama
De Surprise Comedy
De Surprise Romance
As the Light Goes Out Action
As the Light Goes Out Drama
The End of the Tour Drama
What We Do in the Shadows Comedy
What We Do in the Shadows Horror
Drishyam Crime
Drishyam Drama
Drishyam Thriller
Shrew's Nest Drama
Shrew's Nest Horror
Shrew's Nest Thriller
The Divine Move Crime
The Divine Move Drama
Gooische Vrouwen II Comedy
Gooische Vrouwen II Drama
Gooische Vrouwen II Romance
Ice Poison Drama
Bad Fucking Comedy
April and the Extraordinary World Animation
April and the Extraordinary World Adventure
April and the Extraordinary World Comedy
Fasten Your Seatbelts Comedy
Fasten Your Seatbelts Drama
Song 'e Napule Action
Song 'e Napule Comedy
Song 'e Napule Crime

248
An Afternoon Short
An Afternoon Drama
An Afternoon Romance
The Lost Honour of Christopher Jefferies Drama
Schneider vs. Bax Comedy
Schneider vs. Bax Thriller
Daughters of Dolma Documentary
Daughters of Dolma News
Number One Fan Comedy
Number One Fan Drama
Number One Fan Thriller
The Swedish Moment Comedy
The Swedish Moment Crime
Junior Documentary
Junior Sport
I Can Quit Whenever I Want Comedy
Cake Drama
Prospect Short
Prospect Action
Prospect Drama
Tinker Ticker Drama
Mès negro que la noche Horror
Paul Blart: Mall Cop 2 Action
Paul Blart: Mall Cop 2 Comedy
Paul Blart: Mall Cop 2 Crime
The Sea of Trees Drama
Extraordinary Tales Animation
Extraordinary Tales Mystery
Night Will Fall Documentary
Night Will Fall History
Night Will Fall War
E-Team Documentary
Closer to God Horror
Closer to God Sci-Fi
Closer to God Thriller
Fort Tilden Comedy
Hèter meines Bruders Drama
Happiness Documentary
Happiness Drama
Happiness Family
Escape Drama
The Notorious Mr. Bout Documentary
To Kill a Man Crime
To Kill a Man Drama
To Kill a Man Thriller
To Singapore, with Love Documentary
Finders Keepers Documentary
Hallè hallè Comedy

249
La buca Comedy
Patterns of Evidence: The Exodus Documentary
Patterns of Evidence: The Exodus History
The Lobster Comedy
The Lobster Romance
The Lobster Sci-Fi
The White Haired Witch of Lunar Kingdom Fantasy
Stations of the Cross Drama
JLA Adventures: Trapped in Time Animation
JLA Adventures: Trapped in Time Action
JLA Adventures: Trapped in Time Sci-Fi
American Hostage Crime
American Hostage Drama
American Hostage Thriller
Rise of the Legend Action
Rise of the Legend Biography
Rise of the Legend Drama
Blind Massage Drama
Black Coal, Thin Ice Crime
Black Coal, Thin Ice Drama
Black Coal, Thin Ice Mystery
Jack Drama
Macondo Drama
Blank: A Vinylmation Love Story Animation
Blank: A Vinylmation Love Story Short
Blank: A Vinylmation Love Story Family
Kung Fury Short
Kung Fury Action
Kung Fury Comedy
Toy Story That Time Forgot Animation
Toy Story That Time Forgot Short
Toy Story That Time Forgot Adventure
The Distance Mystery
The Distance Sci-Fi
Casa Grande Drama
Torneranno i prati War
1971 Documentary
1971 History
1971 Thriller
Mon roi Drama
Mon roi Romance
Who the F**K Is Arthur Fogel Documentary
The Fatal Encounter Action
The Fatal Encounter Drama
Vie sauvage Drama
Friends and Romans Comedy
Avengers Confidential: Black Widow & Punisher Animation
Avengers Confidential: Black Widow & Punisher Action

250
Avengers Confidential: Black Widow & Punisher Sci-Fi
La sedia della felicitè Comedy
The Fear of Darkness Thriller
Tillbaka till Bromma Comedy
Mediterranea Drama
7 Chinese Brothers Comedy
Honig im Kopf Comedy
Honig im Kopf Drama
Honig im Kopf Family
Pas son genre Drama
Pas son genre Romance
Pixadores Documentary
Kombinat 'Nadezhda' Drama
I Am Syd Stone Short
I Am Syd Stone Drama
Mardaani Action
Mardaani Drama
Mardaani Thriller
For Some Inexplicable Reason Comedy
For Some Inexplicable Reason Drama
Petals on the Wind Drama
Petals on the Wind Romance
Petals on the Wind Thriller
Take Me to the River Documentary
Take Me to the River Music
The Teacher's Diary Drama
Embers Drama
Embers Sci-Fi
The Kidnapping of Michel Houellebecq Comedy
The Kidnapping of Michel Houellebecq Drama
The Midnight After Comedy
The Midnight After Mystery
The Midnight After Sci-Fi
Steve McQueen: The Man & Le Mans Documentary
Time Out of Mind Drama
La cueva Horror
Der Anstèndige Documentary
Der Anstèndige Drama
Der Anstèndige History
The Assassin Action
The Assassin Drama
Another Year Drama
54 Days Drama
54 Days Sci-Fi
54 Days Thriller
Holiday Drama
Misunderstood Drama
That Demon Within Action

251
That Demon Within Crime
The Possibilities Are Endless Documentary
The Possibilities Are Endless Biography
The Possibilities Are Endless Music
Snow on the Blades Action
Snow on the Blades Drama
Snow on the Blades History
Miss Granny Comedy
Miss Granny Fantasy
Miss Granny Music
Best of Enemies Documentary
Best of Enemies History
Best of Enemies News
Harmontown Documentary
Melbourne Drama
Drumline: A New Beat Comedy
Drumline: A New Beat Drama
Drumline: A New Beat Music
The Look of Silence Documentary
The Good Sister Drama
The Good Sister Mystery
The Good Sister Thriller
Saihate nite Drama
Headfirst Comedy
Headfirst Drama
Chevalier Comedy
Chevalier Drama
The Incident Sci-Fi
Como funcionan casi todas las cosas Drama
Blood Moon Horror
My Little Pony: Equestria Girls - Rainbow Rocks Animation
My Little Pony: Equestria Girls - Rainbow Rocks Adventure
My Little Pony: Equestria Girls - Rainbow Rocks Comedy
Meadowland Drama
Bhoothnath Returns Comedy
Bhoothnath Returns Drama
Bhoothnath Returns Fantasy
The D Train Comedy
Finders Keepers Thriller
Messi Documentary
Messi Biography
Dior and I Documentary
Wolf Warrior Action
Wolf Warrior Drama
Wolf Warrior War
Sunny in the Dark Drama
A Year in Champagne Documentary
45 Years Drama

252
45 Years Romance
Zapped Comedy
Zapped Fantasy
The Grief of Others Drama
The Bèlier Family Comedy
The Bèlier Family Drama
The Bèlier Family Music
Nas: Time Is Illmatic Documentary
èkte vare Drama
Slums: Cities of Tomorrow Documentary
Slums: Cities of Tomorrow Biography
Slums: Cities of Tomorrow News
Perez. Crime
Perez. Drama
Perez. Thriller
Khoobsurat Comedy
Khoobsurat Romance
Broken Drama
Broken Mystery
Broken Thriller
Wolf Hall Drama
Wolf Hall History
Print the Legend Documentary
Print the Legend Biography
Print the Legend Drama
Chasuke's Journey Comedy
Pale Moon Drama
Durak Drama
The Dinner Drama
Welcome to Happiness Comedy
Welcome to Happiness Drama
Welcome to Happiness Fantasy
A Histèria Da Eternidade Drama
A Histèria Da Eternidade Music
A Histèria Da Eternidade Romance
Songs My Brothers Taught Me Drama
The Great Invisible Documentary
The Midnight Swim Drama
The Midnight Swim Mystery
Jigarthanda Crime
Jigarthanda Drama
Jigarthanda Musical
Point and Shoot Documentary
Regarding Susan Sontag Documentary
A Perfect Day Drama
Korengal Documentary
Korengal History
Korengal News

253
Strana Oz Comedy
Sweet Alibis Comedy
Sweet Alibis Romance
Tashi and the Monk Documentary
Tashi and the Monk Biography
Tashi and the Monk Family
Only the Dead Documentary
Only the Dead Biography
Only the Dead History
Unga Sophie Bell Drama
Limited Partnership Documentary
Limited Partnership Biography
Limited Partnership Drama
La cèrèmonie Documentary
Liebe mich! Comedy
Liebe mich! Drama
Night Owls Comedy
Night Owls Drama
Belye nochi pochtalona Alekseya Tryapitsyna Drama
Life May Be Documentary
Life May Be Biography
The Last Season Documentary
The Last Season Family
The Last Season War
Eager Animation
Eager Short
Eager Fantasy
Northpole Fantasy
Conducta Drama
Out of Nature Comedy
Out of Nature Drama
Wondrous Boccaccio Comedy
Wondrous Boccaccio Drama
Wondrous Boccaccio History
Just Eat It: A Food Waste Story Documentary
Girl on the Edge Drama
Girl on the Edge Family
24 Days Drama
24 Days Thriller
Lights Out Short
Lights Out Horror
Antboy: Revenge of the Red Fury Adventure
Antboy: Revenge of the Red Fury Comedy
Antboy: Revenge of the Red Fury Family
Nena Biography
Nena Comedy
Nena Drama
The Sheik Documentary

254
Killing Jesus Biography
Killing Jesus Drama
Killing Jesus History
A Sunday Kind of Love Drama
A Sunday Kind of Love Fantasy
A Sunday Kind of Love Romance
El vals de los inètiles Drama
Mommy Drama
Ankhon Dekhi Comedy
Ankhon Dekhi Drama
Creature Horror
Creature Sci-Fi
One-Minute Time Machine Short
One-Minute Time Machine Comedy
One-Minute Time Machine Romance
Rolling Papers Documentary
Rolling Papers Comedy
Rolling Papers News
Death in Buenos Aires Crime
Death in Buenos Aires Drama
Death in Buenos Aires Mystery
Animation Runner Kuromi 2 Animation
Animation Runner Kuromi 2 Comedy
Animation Runner Kuromi 2 Drama
Paper Towns Drama
Paper Towns Mystery
Paper Towns Romance
Noi 4 Comedy
Summer of Blood Comedy
Summer of Blood Horror
Mutant World Sci-Fi
Mr. Dynamite: The Rise of James Brown Documentary
Mr. Dynamite: The Rise of James Brown Music
Negociador Comedy
Negociador Drama
Nowitzki: The Perfect Shot Documentary
Nowitzki: The Perfect Shot Biography
Nowitzki: The Perfect Shot Sport
Bjèrk: Biophilia Live Documentary
Bjèrk: Biophilia Live Music
Wishin' and Hopin' Comedy
Wishin' and Hopin' Drama
Remember Me? Comedy
Remember Me? Romance
Force Majeure Drama
Hole Short
Hole Drama
Wet Bum Drama

255
Wet Bum Family
Don't Hug Me I'm Scared 2: Time Animation
Don't Hug Me I'm Scared 2: Time Short
Soul Boys of the Western World Documentary
Soul Boys of the Western World Biography
Soul Boys of the Western World Music
Jinxy Jenkins, Lucky Lou Animation
Jinxy Jenkins, Lucky Lou Short
Jinxy Jenkins, Lucky Lou Adventure
Appleseed Alpha Animation
Appleseed Alpha Action
Appleseed Alpha Sci-Fi
Wir tun es fèr Geld Comedy
I Smile Back Drama
The Newburgh Sting Documentary
Absent Minded Animation
Absent Minded Short
Let's Sin Action
Let's Sin Crime
Let's Sin Drama
Sworn Virgin Drama
The Photographer Action
The Photographer Thriller
The Snake Brothers Comedy
The Snake Brothers Drama
The Snake Brothers Family
Divine Access Comedy
Divine Access Drama
Art and Craft Documentary
21 Years: Richard Linklater Documentary
21 Years: Richard Linklater Biography
Modris Drama
Songs She Wrote About People She Knows Comedy
Songs She Wrote About People She Knows Music
Songs She Wrote About People She Knows Musical
Marvellous Drama
Party Girl Drama
Giuseppe Makes a Movie Documentary
A Girl at My Door Drama
Armi elèè! Biography
Armi elèè! Drama
H. Drama
H. Sci-Fi
H. Thriller
Erebus: Into the Unknown Documentary
Learning to Ride Drama
Free Fall Comedy
Free Fall Drama

256
Holding the Man Drama
Hardkor Disko Drama
Dragon Blade Action
Dragon Blade Adventure
Dragon Blade Drama
The Salt of the Earth Documentary
The Salt of the Earth Biography
Lovemilla Comedy
Lovemilla Romance
Lovemilla Sci-Fi
Len and Company Comedy
Len and Company Drama
Merchants of Doubt Documentary
Maidan Documentary
Silvered Water, Syria Self-Portrait Documentary
Silvered Water, Syria Self-Portrait War
You're Ugly Too Comedy
Last Cab to Darwin Comedy
Last Cab to Darwin Drama
Last Cab to Darwin Romance
Fugly Drama
Fugly Thriller
Felix and Meira Drama
Felix and Meira Romance
Alias Marèa Drama
Alias Marèa War
600 Millas Drama
600 Millas Thriller
Heaven Knows What Drama
Feast Animation
Feast Short
Feast Comedy
Miss Hokusai Animation
Miss Hokusai Biography
Miss Hokusai Drama
Sarajevo Drama
The Other One: The Long, Strange Trip of Bob Weir Documentary
One on One Drama
Gangnam Blues Action
Gangnam Blues Crime
Gangnam Blues Drama
Coming Soon Comedy
Dude Bro Party Massacre III Comedy
Dude Bro Party Massacre III Horror
All About My Parents Comedy
All About My Parents Drama
It's Already Tomorrow in Hong Kong Comedy
It's Already Tomorrow in Hong Kong Romance

257
Of Men and War Documentary
Of Men and War History
Of Men and War War
Remember Drama
Remember Thriller
Bessie Biography
Bessie Drama
Bessie Music
Deathgasm Comedy
Deathgasm Horror
An Italian Name Comedy
The Kindergarten Teacher Drama
I Am Michael Drama
Unfriended Horror
Unfriended Mystery
Unfriended Thriller
A Dangerous Game Documentary
The Wait Drama
Court Drama
Refugiado Drama
Over the Garden Wall Animation
Over the Garden Wall Adventure
Over the Garden Wall Comedy
Autism in Love Documentary
Autism in Love Drama
The Great Hypnotist Drama
The Great Hypnotist Mystery
The Great Hypnotist Thriller
3 AM: A Paranormal Experience Horror
3 AM: A Paranormal Experience Romance
Das Ende der Geduld Drama
The Disappearance of Eleanor Rigby: Her Drama
Requisitos para ser una persona normal Comedy
Requisitos para ser una persona normal Family
Requisitos para ser una persona normal Romance
One Christmas Eve Family
Die Fischerin Drama
Last Chance Comedy
Ava's Possessions Mystery
Ava's Possessions Sci-Fi
Ava's Possessions Thriller
The Disappearance of Eleanor Rigby: Them Drama
Sailing to Paradise Comedy
Sailing to Paradise Drama
Sailing to Paradise Romance
Hill of Freedom Drama
Body Drama
Body Thriller

258
A Brave Heart: The Lizzie Velasquez Story Documentary
A Brave Heart: The Lizzie Velasquez Story Biography
A Brave Heart: The Lizzie Velasquez Story Family
Latin Lover Comedy
Latin Lover Drama
Tetarti 04:45 Crime
Tetarti 04:45 Drama
Tetarti 04:45 Thriller
Mountains May Depart Drama
The Second Mother Drama
Bogowie Biography
Bogowie Drama
Sherpa Documentary
Hitchcock/Truffaut Documentary
Flocken Drama
Flocken Thriller
Wire Cutters Animation
Wire Cutters Short
Wire Cutters Drama
Whitney Biography
Whitney Drama
Self Made Drama
Elephant Song Drama
Our Little Sister Drama
Asterix and Obelix: Mansion of the Gods Animation
Asterix and Obelix: Mansion of the Gods Adventure
Asterix and Obelix: Mansion of the Gods Comedy
Warsaw '44 Drama
Warsaw '44 War
Hello, My Name Is Doris Drama
Iron Ivan Biography
Iron Ivan Drama
Iron Ivan Sport
Love Drama
Love Romance
Ashby Comedy
Ashby Drama
Ashby Romance
Afterlife Comedy
Afterlife Drama
Afterlife Family
Sindrom Petrushki Drama
Cherry Tobacco Romance
Wir sind die Neuen Comedy
Sleeping Giant Adventure
Sleeping Giant Drama
War Pigs Action
War Pigs War

259
I'm the One You Want Drama
Cèdigo Paz Action
Cèdigo Paz Adventure
Cèdigo Paz Crime
Valley Uprising Documentary
Paulina Thriller
Corner Gas: The Movie Comedy
The Swimmers Drama
The Swimmers Horror
The Brand New Testament Comedy
The Escort Comedy
Roar Action
Roar Adventure
Roar Thriller
Brand: A Second Coming Documentary
Brand: A Second Coming Biography
6 Years Drama
6 Years Romance
Drone Documentary
Drone War
Halo: Nightfall Action
Halo: Nightfall Adventure
Halo: Nightfall Sci-Fi
Son of Saul Drama
Noi e la Giulia Comedy
Ode to My Father Drama
Ode to My Father Romance
Ode to My Father War
Cop Car Thriller
Bloed, Zweet & Tranen Biography
Bloed, Zweet & Tranen Music
A Blast Drama
A Blast Thriller
The Unauthorized Saved by the Bell Story Comedy
The Girl Who Talked to Dolphins Documentary
Naked Among Wolves Drama
Naked Among Wolves History
Naked Among Wolves War
Monster High: Freaky Fusion Animation
Lava Animation
Lava Short
Lava Romance
Results Comedy
Tangerine Comedy
Tangerine Drama
Labyrinth of Lies History
Scusate se esisto! Comedy
The Tree Drama

260
A War Drama
A War War
The Visit Documentary
Ratter Drama
Ratter Thriller
Thread of Lies Drama
Bang Gang (A Modern Love Story) Drama
Felices 140 Comedy
Felices 140 Drama
The Overnight Comedy
The Overnight Mystery
Dope Comedy
Dope Crime
Dope Drama
Chronic Drama
Homies Comedy
Assassination Classroom Adventure
Clean Hands Crime
Clean Hands Drama
Clean Hands Thriller
A Fool Drama
Mune, le gardien de la lune Animation
The Bronze Comedy
The Bronze Drama
Ogni maledetto Natale Comedy
Tiny Times 3.0 Drama
Tiny Times 3.0 Romance
King Jack Adventure
My Lonely Me Musical
My Lonely Me Thriller
11 Minutes Thriller
The Missing Crime
The Missing Drama
The Missing Mystery
Men & Chicken Comedy
Men & Chicken Drama
Men & Chicken Sci-Fi
Tokyo Fiancèe Romance
Kept Woman Drama
Batkid Begins Documentary
Batkid Begins Biography
Batkid Begins Family
Chuang ru zhe Crime
Chuang ru zhe Thriller
Sonyeogoedam Comedy
Sonyeogoedam Horror
Sonyeogoedam Romance
Fires on the Plain Drama

261
Fires on the Plain War
That Sugar Film Documentary
The State-Mafia Pact Crime
Christmas, Again Drama
Christmas, Again Romance
Black Souls Drama
The Continent Drama
Gayby Baby Documentary
Gayby Baby Family
Those People Drama
Those People Romance
Call Me Lucky Documentary
Call Me Lucky Biography
Call Me Lucky Comedy
Loreak Drama
The Birth of Sakè Documentary
The Birth of Sakè Biography
The Birth of Sakè Family
Tales of the Grim Sleeper Documentary
Tales of the Grim Sleeper Crime
The Princess of France Drama
August Winds Drama
Songs from the North Documentary
Salad Days Documentary
Salad Days Music
But Always Drama
But Always Romance
Horse Money Drama
The Iron Ministry Documentary
Remake, Remix, Rip-Off: About Copy Culture & Turkish Pop Cinema Documentary
Si accettano miracoli Comedy
Sei mai stata sulla luna? Comedy
From Caligari to Hitler: German Cinema in the Age of the Masses Documentary
From Caligari to Hitler: German Cinema in the Age of the Masses Biography
From Caligari to Hitler: German Cinema in the Age of the Masses History
Lamb Drama
With This Ring Comedy
With This Ring Romance
Iron Man and Captain America: Heroes United Animation
Iron Man and Captain America: Heroes United Action
Iron Man and Captain America: Heroes United Sci-Fi
Hector Drama
Pokèmon the Movie: Diancie and the Cocoon of Destruction Animation
Pokèmon the Movie: Diancie and the Cocoon of Destruction Action
Pokèmon the Movie: Diancie and the Cocoon of Destruction Adventure
Bill Maher: Live from D.C. Comedy
Scooby-Doo! Frankencreepy Animation
Scooby-Doo! Frankencreepy Adventure

262
Scooby-Doo! Frankencreepy Family
Butterfly Comedy
Butterfly Drama
Butterfly Romance
The Price We Pay Documentary
The Price We Pay News
Out of My Hand Drama
The Daughter Drama
OzLand Drama
OzLand Fantasy
OzLand Sci-Fi
Zvezda Comedy
Zvezda Drama
Corbo Biography
Corbo Crime
Corbo Drama
The Taking of Tiger Mountain Adventure
Scherzo Diabolico Comedy
Scherzo Diabolico Horror
A Country Called Home Drama
My Old Classmate Romance
Confession Thriller
Along Came a Nanny Mystery
In the Basement Documentary
Welcome to Leith Documentary
Welcome to Leith Thriller
We Can't Live Without Cosmos Animation
We Can't Live Without Cosmos Short
We Can't Live Without Cosmos Drama
Mustang Drama
The President Comedy
The President Drama
From Caligari to Hitler: German Cinema in the Age of the Masses Documentary
From Caligari to Hitler: German Cinema in the Age of the Masses Biography
From Caligari to Hitler: German Cinema in the Age of the Masses History
The Perfect Dictatorship Comedy
The Perfect Dictatorship Drama
Peter Pan Live! Adventure
Peter Pan Live! Family
Peter Pan Live! Fantasy
Kaakkaa Muttai Drama
Cafè. Waiting. Love Comedy
Cafè. Waiting. Love Drama
Cafè. Waiting. Love Fantasy
One and Two Drama
One and Two Fantasy
One and Two Thriller
Fourth Man Out Comedy

263
Fourth Man Out Drama
Aanmodderfakker Comedy
Aanmodderfakker Romance
Capital C Documentary
Capital C Drama
Capital C News
III Drama
III Horror
III Thriller
Queen of Earth Drama
Queen of Earth Thriller
What's Between Us Drama
Do I Sound Gay? Documentary
Foreign Body Drama
Looking for Grace Drama
Tom and Jerry: The Lost Dragon Animation
Tom and Jerry: The Lost Dragon Comedy
Tom and Jerry: The Lost Dragon Family
Terror at the Mall Documentary
Terror at the Mall History
Hockney Documentary
I Am Ali Documentary
I Am Ali Biography
I Am Ali Sport
Shut In Drama
Shut In Horror
Shut In Thriller
Saving Christmas Comedy
Saving Christmas Family
Xiu chun dao Action
The Royal Tailor Drama
Home Care Comedy
Home Care Drama
Underdog Drama
Radiator Drama
Bag Man Short
Bag Man Action
Bag Man Drama
The Man in the Wall Drama
The Man in the Wall Thriller
Whistle Blower Drama
Cosmos Drama
Gold Coast Drama
Gold Coast History
Gold Coast Romance
Citizenfour Documentary
Fiddlesticks Family
Encounters Horror

264
Encounters Mystery
Encounters Sci-Fi
My Golden Days Drama
The Chinese Mayor Documentary
The Chinese Mayor Drama
The Chinese Mayor News
India's Daughter Documentary
India's Daughter Crime
India's Daughter News
Green Room Horror
Green Room Thriller
My Love, Don't Cross That River Documentary
My Love, Don't Cross That River Family
My Love, Don't Cross That River Romance
Andiamo a quel paese Comedy
Best Christmas Party Ever Drama
Best Christmas Party Ever Family
Killswitch Documentary
Killswitch Drama
Pervert Park Documentary
Pervert Park Crime
Dark Star: H.R. Giger's World Documentary
Dark Star: H.R. Giger's World Biography
Cemetery of Splendour Drama
Somewhere Only We Know Drama
Somewhere Only We Know Romance
We Are Young. We Are Strong. Drama
We Are Young. We Are Strong. History
Life Is Sacred Documentary
Life Is Sacred Biography
Life Is Sacred News
Being Evel Documentary
Being Evel Biography
Being Evel History
Peace Officer Documentary
Peace Officer News
Dheepan Crime
Dheepan Drama
The Russian Woodpecker Documentary
The Russian Woodpecker History
The Russian Woodpecker News
Bitva za Sevastopol Biography
Bitva za Sevastopol Drama
Bitva za Sevastopol Romance
Disorder Drama
Disorder Thriller
Frankenstein Horror
Frankenstein Thriller

265
Dhanak Drama
Packed In A Trunk: The Lost Art of Edith Lake Wilkinson Documentary
Packed In A Trunk: The Lost Art of Edith Lake Wilkinson Drama
My Skinny Sister Drama
My Skinny Sister Family
Beyond the Fear Documentary
Beyond the Fear History
In the Grayscale Drama
In the Grayscale Romance
Dream Driven Documentary
People Places Things Comedy
War Drama
They Look Like People Drama
They Look Like People Mystery
They Look Like People Thriller
Miedzy nami dobrze jest Comedy
Miedzy nami dobrze jest Drama
Whisper If I Forget Drama
Whisper If I Forget Family
Whisper If I Forget Music
Those Who Feel the Fire Burning Documentary
Those Who Feel the Fire Burning Drama
Solnechnyy udar Drama
1989 Documentary
1989 History
1989 Thriller
Valley of Love Drama
Day One Short
Day One Drama
Day One War
For Grace Documentary
For Grace Biography
For Grace Family
Cartel Land Documentary
Cartel Land Action
Cartel Land Drama
3 1/2 Minutes, Ten Bullets Documentary
3 1/2 Minutes, Ten Bullets Crime
3 1/2 Minutes, Ten Bullets Drama
Ambition Short
Ambition History
Ambition Mystery
Lucifer Drama
Test Drama
Tired Moonlight Drama
The Seven Five Documentary
Ixcanul Volcano Drama
Magician: The Astonishing Life and Work of Orson Welles Documentary

266
Dark Horse Documentary
Dark Horse Drama
Italiano medio Comedy
How to Change the World Documentary
How to Change the World Adventure
How to Change the World Biography
Listen to Me Marlon Documentary
Listen to Me Marlon Biography
Unexpected Comedy
Unexpected Drama
Crush the Skull Comedy
Crush the Skull Horror
Crush the Skull Thriller
The Here After Drama
Iris Documentary
Iris Biography
Iris History
Olmo & the Seagull Documentary
Olmo & the Seagull Drama
Olmo & the Seagull Family
Prince Drama
Angels of Revolution Drama
Homme Less Documentary
Homme Less Biography
That Thing Called Tadhana Romance
World of Tomorrow Animation
World of Tomorrow Short
World of Tomorrow Comedy
Journey to the Shore Drama
Journey to the Shore Fantasy
Journey to the Shore Romance
Bridgend Drama
The Hunting Ground Documentary
The Ecstasy of Wilko Johnson Documentary
Thank You for Playing Documentary
Thank You for Playing Drama
Thank You for Playing Family
Limonata Comedy
Limonata Drama
Socialphobia Drama
Elizabeth Ekadashi Adventure
Elizabeth Ekadashi Drama
Elizabeth Ekadashi Family
Boj za Documentary
Western Documentary
Western Western
The Shaman Short
The Shaman Drama

267
The Shaman Sci-Fi
Frau Mèller muss weg! Comedy
Top Spin Documentary
TransFatty Lives Documentary
TransFatty Lives Biography
Black Mountain Poets Comedy
Victoria Crime
Victoria Drama
Victoria Thriller
Les cowboys Drama
Zid Crime
Zid Thriller
Cobain: Montage of Heck Documentary
Cobain: Montage of Heck Biography
Cobain: Montage of Heck Music
Tanna Drama
Tanna Romance
Forever Drama
Tyke Elephant Outlaw Documentary
In Transit Documentary
In Transit News
The Witch Horror
Krisha Drama
Krisha Family
Most Likely to Succeed Documentary
Most Likely to Succeed Drama
Most Likely to Succeed News
Applesauce Comedy
Caught Thriller
The Boy and the Beast Animation
The Boy and the Beast Action
The Boy and the Beast Adventure
Breaking a Monster Documentary
Breaking a Monster Biography
Breaking a Monster Drama
Under Electric Clouds Drama
Under Electric Clouds Sci-Fi
Embrace of the Serpent Adventure
James White Drama
B-Movie: Lust & Sound in West-Berlin 1979-1989 Documentary
B-Movie: Lust & Sound in West-Berlin 1979-1989 Music
Evolution Drama
Genetic Me Documentary
An Drama
The Jinx: The Life and Deaths of Robert Durst Documentary
Insanity Thriller
Ivy Drama
Ch/B Comedy

268
Ch/B Drama
It's Me, Hilary: The Man Who Drew Eloise Documentary
It's Me, Hilary: The Man Who Drew Eloise Short
Larry Kramer in Love and Anger Documentary
Larry Kramer in Love and Anger Biography
Larry Kramer in Love and Anger History
Carte Blanche Drama
The Mysterious Death of Pèrola Fantasy
The Mysterious Death of Pèrola Mystery
The Mysterious Death of Pèrola Thriller
Frame by Frame Documentary
Frame by Frame War
The Break-In Drama
The Break-In Thriller
Live from New York! Documentary
Live from New York! Biography
Live from New York! Comedy
Body Comedy
Body Drama
Taxi Drama
Crumbs Adventure
Crumbs Fantasy
Crumbs Mystery
Louis C.K.: Live at the Comedy Store Comedy
How to Win at Checkers (Every Time) Drama
Aferim! Adventure
Aferim! Comedy
Aferim! Drama
The Club Drama
The Pearl Button Documentary
Hot Girls Wanted Documentary
Pionery-geroi Drama
Adam Curtis: Bitter Lake Documentary
Everything Before Us Drama
Everything Before Us Romance
The Clan Biography
The Clan Crime
The Clan Drama
Homeland (Iraq Year Zero) Documentary
Port of Call Crime
Port of Call Drama
Port of Call Mystery
Ave Maria Short
Ave Maria Comedy
The Wakhan Front Drama
Marguerite & Julien Drama
Marguerite & Julien History
Marguerite & Julien Romance

269
Marguerite Drama
The Measure of a Man Drama
Dègradè Drama
Song of Lahore Documentary
Song of Lahore Music
The Corpse of Anna Fritz Drama
The Corpse of Anna Fritz Thriller
Ayanda and the Mechanic Drama
Ayanda and the Mechanic Romance
Ice and the Sky Documentary
Tom Swift and His Electric Rifle Documentary
Tom Swift and His Electric Rifle Drama
Emelie Thriller
Thought Crimes: The Case of the Cannibal Cop Documentary
The Treasure Comedy
Hallway Short
Hallway Drama
Hallway Romance
Jeruzalem Horror
Un monstruo de mil cabezas Drama
Un monstruo de mil cabezas Thriller
Ho ucciso Napoleone Comedy
Techo y comida Drama
The High Sun Drama
Dennis Rodman's Big Bang in PyongYang Documentary
Dennis Rodman's Big Bang in PyongYang Sport
The Other Side Documentary
The Other Side Drama
Kaili Blues Drama
Kaili Blues Mystery
One Floor Below Drama
Ingrid Bergman in Her Own Words Documentary
Ingrid Bergman in Her Own Words Biography
Fly Away Solo Drama
Nahid Drama
Manoman Short
Manoman Drama
Se Dio vuole Comedy
Monkey King: Hero Is Back Animation
Coin Locker Girl Drama
Bitcoin: The End of Money as We Know It Documentary
Bitcoin: The End of Money as We Know It News
Land and Shade Drama
A Sinner in Mecca Documentary
Very Semi-Serious Documentary
Office Thriller
Much Loved Drama
The Magic Mountain Animation

270
The Magic Mountain Drama
Alice in Earnestland Drama
Heil Comedy
Desde allè Drama
Babai Drama
Paren s nashego kladbishcha Comedy
Paren s nashego kladbishcha Mystery
Paren s nashego kladbishcha Thriller
Tryapichnyy soyuz Comedy
Tryapichnyy soyuz Drama
Right Now, Wrong Then Drama
The Laundryman Comedy
The Red Spider Thriller
Our Loved Ones Drama
No Home Movie Documentary
Scenes of a Sexual Nature Comedy
Scenes of a Sexual Nature Drama
Scenes of a Sexual Nature Romance

7.8 7. $lookup
7.8.1 Purpose:
The $lookup stage performs a left outer join to another collection.

7.8.2 Example:
To join the movies collection with a directors collection and get more information about the
directors, you can use the $lookup stage to merge relevant data.
[ ]: pipeline = [
{"$lookup": {"from": "directors", "localField": "director_id",␣
↪"foreignField": "_id", "as": "director_info"}}

]
result = db.movies.aggregate(pipeline)
for movie in result:
print(movie["title"], movie["director_info"])

Streaming output truncated to the last 5000 lines.


Daniel and Ana []
Sex & Drugs & Rock & Roll []
Jesus Henry Christ []
Aftershock []
Helena from the Wedding []
Once Upon a Time in Mumbai []
Erasing David []
When I Walk []
Mr. Popper's Penguins []
The Wild and Wonderful Whites of West Virginia []

271
Twice Born []
Winnebago Man []
Taken 2 []
Enid []
Carny []
Confucius []
Grown Up Movie Star []
RiP: A Remix Manifesto []
The Day I Was Not Born []
Journey 2: The Mysterious Island []
Yellowbrickroad []
Earthling []
Thursday Till Sunday []
Transformers: Dark of the Moon []
Oppai Volleyball []
Winter's Bone []
Obitaemyy ostrov. Skhvatka []
Lost Boys: The Thirst []
Rare Exports: A Christmas Tale []
Unknown []
Black Venus []
I Give My First Love to You []
72 days []
Happy Feet 2 []
Aurora []
Bodyguards and Assassins []
Hesher []
Come Undone []
Everything Will be Fine []
True Grit []
Remember Me []
The Last Summer of La Boyita []
The Bannen Way []
Celeste & Jesse Forever []
For Colored Girls []
Lourdes []
Lost Persons Area []
Loose Cannons []
I'm Glad My Mother Is Alive []
Jaffa []
Wrinkles []
Altitude []
The Moth Diaries []
Just Wright []
The Stranger []
Twelve []
The Father and the Foreigner []
Star Trek Into Darkness []

272
Ride Along []
Bloomington []
Men in Black 3 []
The Flowers of War []
Symbol []
Rabbit è la Berlin []
Before Your Eyes []
No Strings Attached []
Riddick []
Finnish Blood Swedish Heart []
Lover or Loser []
Hop []
The Hangover Part II []
Bucky Larson: Born to Be a Star []
Sold []
They All Lie []
The Best Exotic Marigold Hotel []
Revenge of the Electric Car []
Paranoia []
You Again []
Tracker []
Over Your Cities Grass Will Grow []
To Be King []
Lyubov 2 Morkov []
Immigration Tango []
Son of Babylon []
Nanny McPhee Returns []
The Youngest Son []
In Darkness []
Torrente 4 []
Someone Like You []
Among Wolves []
Beneath Hill 60 []
I, Frankenstein []
Facing Ali []
Riverworld []
General Nil []
Fireball []
Disco and Atomic War []
Me, Them and Lara []
Somewhere []
The Botany of Desire []
A Lonely Place to Die []
Kinatay []
Torn []
Barney's Version []
The Infidel []
The Thorn in the Heart []

273
Chinese Zodiac []
To Die Like a Man []
Nymph []
Predators []
Tsar []
Senna []
That's It []
Shadow []
True Legend []
Black Nativity []
Vampire Girl vs. Frankenstein Girl []
Skeletons []
Lovelace []
East, West, East: The Final Sprint []
HairBrained []
Little Girl []
Eastern Plays []
Go Get Some Rosemary []
No One Knows About Persian Cats []
Skazka pro temnotu []
The Wind Journeys []
A Pierrot []
The Human Race []
3faltig []
Heartbeats []
Princess []
What Became of Us []
Hansel & Gretel: Witch Hunters []
A Woman, a Gun and a Noodle Shop []
Africa United []
Small Town Murder Songs []
Snowflake, the White Gorilla []
Ivul []
Rapt []
The Wolverine []
Big Miracle []
Kiss the Abyss []
Brick Mansions []
The Pirates! Band of Misfits []
Arthur Christmas []
Forget Me Not []
No Problem []
Another Year []
Faster []
Inferno []
A Town Called Panic []
High Lane []
18 Years Later []

274
Metastases []
Canned Dreams []
Rules of Single Life []
Mumbai Diaries []
The Apparition []
Louis Theroux: A Place for Paedophiles []
Hubble 3D []
Tèèllè Pohjantèhden alla II []
The Message []
R []
All the Best: Fun Begins []
Hysteria []
Legacy: Black Ops []
13 Assassins []
Lovers of Hate []
Rio []
Mugabe and the White African []
Murderer []
Le mac []
Beyond []
Le Donk & Scor-zay-zee []
Fright Night []
One Kine Day []
Oranges and Sunshine []
Charlie St. Cloud []
Guzaarish []
The Phantom []
The Founding of a Republic []
Orgasm Inc. []
Perfect Sense []
The Sound of Insects: Record of a Mummy []
Battleship []
Pina []
Rozygrysh []
Submarine []
This Must Be the Place []
The American []
Snow & Ashes []
The Zigzag Kid []
Oxygen []
Martha Marcy May Marlene []
The Solitude of Prime Numbers []
Under the Skin []
Angst []
The Way []
Broken []
Salmon Fishing in the Yemen []
Testament of Youth []

275
Quartet []
The Hedgehog []
Gravity []
14 Blades []
All That I Love []
Reflexèes de um Liquidificador []
Vito []
Oblivion []
Episode 3: 'Enjoy Poverty' []
Bruc, the Manhunt []
Hot Coffee []
Footnote []
The Letters []
Rise of the Guardians []
Ways to Live Forever []
Wolfy []
All In: The Poker Movie []
Prometheus []
Between Two Fires []
A Marine Story []
Matching Jack []
Magadheera []
Peepli (Live) []
StreetDance 3D []
Beyond All Boundaries []
Killer Elite []
Open House []
Hamlet []
If These Knishes Could Talk: The Story of the NY Accent []
Winnie the Pooh []
Filth []
Days of Grace []
Roadie []
Mooz-Lum []
9500 Liberty []
The Boy Who Cried Werewolf []
Sensation []
On Tour []
Bananas!* []
The Poll Diaries []
The Pillars of the Earth []
Popatopolis []
Devil's Playground []
Monsters University []
The Help []
Gravity []
Lapland Odyssey []
Beauty and the Paparazzo []

276
O que Hè de Novo no Amor? []
My Afternoons with Margueritte []
Lightheaded []
Live Music []
Happy Family []
Boy Wonder []
As If I Am Not There []
Goon []
Legend of the Fist: The Return of Chen Zhen []
No Man's Land []
Tomorrow, When the War Began []
The Conjuring []
The Kings of Mykonos []
The Next Three Days []
The Ape []
Picture Me []
Lost and Found []
Reign of Assassins []
Better This World []
Alice []
The Gruffalo []
In Search of Memory []
Dream House []
Letters to God []
Falling Skies []
Horst Schlèmmer - Isch kandidiere! []
Big Sur []
Outrage []
The Odd Life of Timothy Green []
Buried []
The Grandmaster []
All Is Bright []
Decoding Annie Parker []
Big Mommas: Like Father, Like Son []
House of Last Things []
I Am Number Four []
Stake Land []
You're So Cupid! []
Heartbreaker []
Die []
Keep Surfing []
Red White & Blue []
The Italian Key []
Joy []
The Sword with No Name []
King of Triads []
Tucker and Dale vs. Evil []
Cloudburst []

277
Sweet Karma []
The First Beautiful Thing []
The Human Centipede (First Sequence) []
Astral City: A Spiritual Journey []
My Good Enemy []
Hottarake no shima - Haruka to maho no kagami []
What If… []
At Ellen's Age []
Beyond Gay: The Politics of Pride []
MacGruber []
Monsters []
Oxygen []
My Flesh My Blood []
The Violent Kind []
Mammuth []
Prep & Landing []
Summer Wars []
The Aviators []
Saw 3D: The Final Chapter []
Space Battleship Yamato []
Amador []
Where the Road Meets the Sun []
Bitter Feast []
This Is It []
Cedar Rapids []
Hyde Park on Hudson []
Looking for Jackie []
Bridesmaids []
Four Assassins []
Attack the Block []
The High Cost of Living []
Supermen of Malegaon []
Polite People []
Orps: The Movie []
Cosmopolis []
A Letter to Uncle Boonmee []
Happythankyoumoreplease []
Melody for a Street Organ []
Realnyy papa []
The Lorax []
Monsters vs Aliens: Mutant Pumpkins from Outer Space []
Young Bruce Lee []
Logan []
Carbon Nation []
Oblivion []
Spork []
Private Eye []
At Middleton []

278
Hèroes []
Turning Point []
Looking for Jackie []
The Portuguese Nun []
The Trouble with Bliss []
Pure []
Redline []
The Famous and the Dead []
Stargate SG-1: Children of the Gods - Final Cut []
The Referees []
Aadhavan []
Lebanon []
Reel Injun []
8: The Mormon Proposition []
The Dark House []
Mr. Pip []
One Piece: Strong World []
No God, No Master []
Making Plans for Lena []
Red Riding Hood []
Tamara Drewe []
The Raven []
What If []
Drew: The Man Behind the Poster []
The Last Truck: Closing of a GM Plant []
The White Stripes Under Great White Northern Lights []
Zambezia []
Shuffle []
The Change-Up []
WWII in HD []
Down Terrace []
Upperdog []
The Lego Movie []
Alma []
Dive! []
The Iceman []
Mildred Pierce []
The Living Room of the Nation []
Forgetting the Girl []
Parade []
Nature Calls []
Beauty & the Briefcase []
The Wild Hunt []
Strayed []
Future My Love []
Korkoro []
The Tree []
Underworld: Awakening []

279
The Paperboy []
Space Tourists []
Grandmother []
Tropicèlia []
Restless []
Ocean Heaven []
The Whisperer in Darkness []
Women Without Men []
Anjaana Anjaani []
Mall Girls []
Horrible Bosses []
Castaway on the Moon []
Dooman River []
Private Romeo []
Videocracy []
La danse []
I Travel Because I Have to, I Come Back Because I Love You []
Kattradhu Thamizh []
Alamar []
Fantastic Four []
Drive Angry []
Nothing's All Bad []
Oliver Sherman []
Crab Trap []
Genius Within: The Inner Life of Glenn Gould []
Illègal []
Hugh Hefner: Playboy, Activist and Rebel []
Memoria de mis putas tristes []
The Sinking of the Laconia []
The King's Speech []
Road to Nowhere []
Hiroshima []
Hideaway (Le refuge) []
Somebody's Hero []
Yelling to the Sky []
A Lot Like You []
Zettl []
2012: Time for Change []
Smoorverliefd []
Haywire []
Cargo []
The Butterfly Circus []
George Lopez: Tall, Dark & Chicano []
Caterpillar []
Pumzi []
We Don't Care About Music Anyway []
Janie Jones []
The Wildest Dream []

280
Genitori & figli:) - Agitare bene prima dell'uso []
La nostra vita []
Chicks []
School Is Over []
The Three Musketeers []
Griff the Invisible []
Top Floor Left Wing []
The Woman with the 5 Elephants []
Behind the Burly Q []
Third Star []
Behind Blue Skies []
Heathens and Thieves []
The Sunset Limited []
Bo []
The Chicago 8 []
Wanda Sykes: I'ma Be Me []
Last Train Home []
Resurrecting the Street Walker []
Super []
Goblin []
Edie & Thea: A Very Long Engagement []
Above the Street, Below the Water []
Love in Another Language []
Family Affair []
The Reverse []
Sherlock Holmes: A Game of Shadows []
Walking with the Enemy []
Being in the World []
Paju []
The Lottery []
A Beginner's Guide to Endings []
The Greatest Ears in Town: The Arif Mardin Story []
Loki - Arnaldo Baptista []
Bi, Don't Be Afraid []
The Forest []
The Clink of Ice []
Running Turtle []
The Enemy []
The Host []
Sunlight Jr. []
Spy Kids: All the Time in the World in 4D []
Better Mus Come []
Some Dogs Bite []
Life 2.0 []
Meek's Cutoff []
Agnosia []
Taqwacore: The Birth of Punk Islam []
Xianshi shi guoqu de weilai []

281
Love's Kitchen []
Runaway []
Tales of Vesperia: The First Strike []
The New Tenants []
Gabi on the Roof in July []
A Quiet Life []
Anonymous []
Phobia 2 []
Potiche []
Natimorto []
Win/Win []
Raise Your Head []
Bes Sehir []
Love & Slaps []
Sins of My Father []
Harishchandrachi Factory []
King's Road []
The Prize []
Vortex []
Magic Camp []
Gun Hill Road []
The Caller []
Ay Lav Yu []
Merry Madagascar []
The Great Vazquez []
Southern District []
Arya 2 []
Cado dalle nubi []
Tender Son: The Frankenstein Project []
Aglaya []
Melancholia []
H.O.T. Human Organ Traffic []
The Man from Nowhere []
Archipelago []
Horns []
Exodus: Gods and Kings []
Pregnancy Pact []
Route Irish []
Four Lovers []
Ruhr []
Welcome to the South []
The Man Next Door []
Basilicata Coast to Coast []
Trust []
Trek Nation []
Ride the Divide []
Red Hill []
Smitty []

282
The Disappearance of Eleanor Rigby: Him []
Byzantium []
Antikiller D.K. []
Beginners []
Line of Duty []
Paa []
Battle of the Year []
Beautiful Boy []
The Traveler []
Tab Hunter Confidential []
White Night []
Life []
Shaolin []
The Magnetic Man []
Dirty Business []
Strange Powers: Stephin Merritt and the Magnetic Fields []
Beyond the Black Rainbow []
Mr. Bjarnfreèarson []
Verbo []
Loup []
Elysium []
Captain Phillips []
Hope Springs []
Crave []
The Stool Pigeon []
Triple Tap []
The Son of No One []
The Ledge []
The Divide []
Paranormal Activity 2 []
W.E. []
Hide Away []
The Desert of Forbidden Art []
Space Chimps 2: Zartog Strikes Back []
Angel & Tony []
The Mortal Instruments: City of Bones []
Make Believe []
Retratos en un mar de mentiras []
Lunopolis []
A Fierce Green Fire []
The Guard []
Playing for Keeps []
A Single Shot []
Casino Jack and the United States of Money []
El Medico: The Cubaton Story []
10 Mountains 10 Years []
Latin Music USA []
Snow Flower and the Secret Fan []

283
127 Hours []
Man-choo []
Sunset Strip []
Treacle Jr. []
Villain []
Our Brief Eternity []
Hier kommt: Lola []
Plans for Tomorrow []
The Snowman []
The Unknown Woman []
Street Days []
The Search for Santa Paws []
Harriet the Spy: Blog Wars []
Rush: Beyond the Lighted Stage []
Needle []
Knights of Badassdom []
Point Blank []
The Coming Days []
Kim Jong-Il's Comedy Club []
When Love Is Not Enough: The Lois Wilson Story []
Without Men []
Premium Rush []
Judy Moody and the Not Bummer Summer []
The Barons []
Successful Alcoholics []
Unlikely Revolutionaries []
Sebbe []
12th & Delaware []
Another Earth []
Pure Country 2: The Gift []
The Last Stand []
Cafè de Flore []
White Irish Drinkers []
Winnie Mandela []
Kawasaki's Rose []
Dinosaurier []
Our Brief Eternity []
A Better Life []
The Dish & the Spoon []
Six Shooters []
The Flowers of War []
Saigo no Chèshingura []
Under the Hawthorn Tree []
The Friends at the Margherita Cafe []
Cure: The Life of Another []
Country Strong []
The Seasoning House []
Fubar: Balls to the Wall []

284
Aral, Fishing in an Invisible Sea []
Nostalgia for the Light []
The Hypnotist []
Day Is Done []
De Dana Dan []
Dock Ellis & The LSD No-No []
My Perestroika []
GasLand []
Freedom Riders []
Vavien []
The Motel Life []
Amish Grace []
GLOW: The Story of the Gorgeous Ladies of Wrestling []
Secrets in the Walls []
Beautiful Creatures []
Restrepo []
The New Year []
The Master []
The Good Witch's Gift []
Neds []
The Devil Inside []
Chosin []
Essential Killing []
Bloodwork []
Higher Ground []
Golmaal 3 []
Amigo []
Ra.One []
Zindagi Na Milegi Dobara []
Ayahuasca: Vine of the Soul []
Legendary []
Climate of Change []
Logorama []
One Day []
Dolphin Tale []
Just Go with It []
Just Go with It []
Head Over Heels []
Piazza Fontana: The Italian Conspiracy []
Savage []
Romantics Anonymous []
No Distance Left to Run []
For Greater Glory: The True Story of Cristiada []
Magic & Bird: A Courtship of Rivals []
Waiting for 'Superman' []
Morgen []
The Kennedys []
Bluebird []

285
The Voices []
Prey []
Secrets of the Tribe []
Joan Rivers: A Piece of Work []
Enemies of the People []
The Tillman Story []
Jean-Michel Basquiat: The Radiant Child []
The Girl with the Dragon Tattoo []
All the Wrong Reasons []
A Family []
Phase 7 []
Man on a Ledge []
Some Guy Who Kills People []
Memory Lane []
War Horse []
The Secret World of Arrietty []
Chernaya Molniya []
Suicide Club []
Batman: Under the Red Hood []
The Secret World of Arrietty []
Ra.One []
Crazy, Stupid, Love. []
Curious George: A Very Monkey Christmas []
War Don Don []
A Dangerous Method []
The Skeleton Twins []
Measuring the World []
Parked []
Honey []
This Movie Is Broken []
Hong Kong Confidential []
Mount St. Elias []
Khan the Con []
Texas Chainsaw 3D []
The Last Circus []
Beast []
Countdown to Zero []
Housefull []
El mural []
Lily Sometimes []
Good Neighbors []
The Dreamer []
My Granpa, the Bankrobber []
A Christmas Wish []
Dear Guest, When Will You Leave? []
The First Movie []
The Dilemma []
Harold's Going Stiff []

286
Federal Bank Heist []
StarStruck []
Chasing Ice []
Kick []
Silver Tongues []
ReGeneration []
Repeaters []
Saturday Night []
I'm Still Here []
The Jewel []
Daydream Nation []
Puncture []
Guilty []
The Good Doctor []
A Birder's Guide to Everything []
Adhurs []
Khaleja []
House at the End of the Street []
The Holding []
A Barefoot Dream []
Steam of Life []
Rammbock []
Larry Crowne []
G.I. Joe: Retaliation []
Catfish []
Reindeerspotting - Escape from Santaland []
Peak: The Rescuers []
What to Expect When You're Expecting []
Double Wedding []
Beck []
Belle èpine []
Maleficent []
If I Were You []
If God Is Willing and da Creek Don't Rise []
Lego: The Adventures of Clutch Powers []
Exit Through the Gift Shop []
71: Into the Fire []
Little Surfer Girl []
Salla: Selling the Silence []
Tout ce qui brille []
Seitti - kilvoittelijan pèivèkirja []
Warm Bodies []
Jeff, Who Lives at Home []
Easy Money II: Hard to Kill []
Of Gods and Men []
The Yellow Sea []
How I Ended This Summer []
The Last Sentence []

287
Les bessones del carrer de Ponent []
Natarang []
A Mother's Courage: Talking Back to Autism []
Insidious []
It Begins with the End []
Act of Valor []
Maladies []
Take This Waltz []
Zero 2 []
Cousinhood []
8 []
Lockout []
Todo lo que tè quieras []
Magi i luften []
Swerve []
LOL []
Score: A Hockey Musical []
Act of Valor []
The Innkeepers []
To the Wonder []
The Monitor []
Fast Five []
Soul Surfer []
This Means War []
I Am Slave []
Bounty Hunters []
Kinbaku []
This Means War []
Adult World []
The Woman in Black []
Salinger []
Z for Zachariah []
Contagion []
David Wants to Fly []
One for the Money []
New Year's Eve []
Going Down in LA-LA Land []
Safe House []
The Princess of Montpensier []
Abduction []
The Drop []
Heartbeats []
Bill Maher… But I'm Not Wrong []
Brooklyn Boheme []
Seconds Apart []
The Grey []
Albert Nobbs []
72 ga cho hak []

288
Love in a Puff []
2 Days in New York []
Fire of Conscience []
Badmaa$h Company []
Season of the Witch []
Echoes of the Rainbow []
The Son of an Afghan Farmer []
Amour []
Only God Forgives []
Slice []
Higglety Pigglety Pop! or There Must Be More to Life []
Echoes of the Rainbow []
Caught Inside []
Prom []
Priest of Evil []
Monga []
American Reunion []
Frank []
Ein Tick anders []
The Monk []
The Woman in the Fifth []
Midnight in Paris []
Knuckle []
A Good Day to Die Hard []
My Way []
Win Win []
The Vow []
DC Showcase: Jonah Hex []
Tomorrow's Joe []
PiraMMMida []
Six-Pack Movie []
Texas Killing Fields []
Sword of Desperation []
Loft []
About Sunny []
Littlerock []
My Life in Orange []
Lauf Junge lauf []
LSD: Love, Sex Aur Dhokha []
Will You Cross the Skies for Me? []
Gravity []
Superclèsico []
Cornelis []
Will You Cross the Skies for Me? []
The Edge of Dreaming []
Barbie in a Mermaid Tale []
Wedding Planners []
Thorne: Sleepyhead []

289
Absentia []
Thunder Soul []
Vincent Wants to Sea []
Abraham Lincoln: Vampire Hunter []
Gallants []
Once a Gangster []
My Kidnapper []
Bag It []
Rubber []
The Butterfly Room []
A Heartbeat Away []
Beats, Rhymes & Life: The Travels of a Tribe Called Quest []
Leader []
The Music Never Stopped []
Kon-Tiki []
Last Stop 174 []
Time Traveller []
Little Deaths []
Avalon High []
Headhunters []
Savages []
Margin Call []
You Should Meet My Son! []
Alvin and the Chipmunks: Chipwrecked []
Unter dir die Stadt []
J. Edgar []
Dark Souls []
A Horrible Way to Die []
Jupiter Ascending []
The Change-Up []
Dum Maaro Dum []
White Lion []
Racing Extinction []
A Cross the Universe []
Nice Guy Johnny []
Day & Night []
Animals United []
Groupies bleiben nicht zum Frèhstèck []
Dabangg []
Cesar Chavez []
Free Birds []
Think Like a Man []
Natural Selection []
Bangkok Traffic (Love) Story []
30 Minutes or Less []
Final Destination 5 []
Oz the Great and Powerful []
ParaNorman []

290
Cinema Verite []
Little Birds []
Mr. and Mrs. Incredible []
A Night for Dying Tigers []
I Will Follow []
Vampire []
Igualita a mi []
Blood of My Blood []
The Client List []
Young Adult []
Hector and the Search for Happiness []
Touchback []
Ronal the Barbarian []
7 Khoon Maaf []
Blackthorn []
Foster []
Miss Lovely []
Los Marziano []
Sharpay's Fabulous Adventure []
The Cosmonaut []
Almanya: Welcome to Germany []
Courageous []
Body of Water []
Sacrifice []
Among Us []
Kooky []
The Immature []
God of Love []
Edge of Tomorrow []
Van Gogh: Painted with Words []
Burzynski []
Friends with Benefits []
The Flyboys []
Shark Night 3D []
Caravaggio []
Caravaggio []
Dragonslayer []
Montevideo: Taste of a Dream []
Underdogs []
Johnny English Reborn []
Intruders []
Hands Up []
Jitters []
Pixels []
Love Birds []
Project X []
An Affair of the Heart []
I Want to Be a Soldier []

291
Maledimiele []
In Time []
Ted []
Mars et Avril []
The Patience Stone []
Skylab []
Client 9: The Rise and Fall of Eliot Spitzer []
The Armstrong Lie []
No Return []
Russendisko []
Once Upon a Time in Queens []
Justin and the Knights of Valour []
A Screaming Man []
Jumping the Broom []
Rampart []
Armadillo []
A Few Best Men []
The Prophet []
96 Minutes []
Postcard []
Below Zero []
Terraferma []
Majesty []
Citadel []
Hell []
The Depraved []
Ganavim Ba Hok []
Inside Job []
The Art of Getting By []
Erased []
The Dictator []
Romeo & Juliet []
Queen of the Sun: What Are the Bees Telling Us? []
I Wish I Knew []
Life, Above All []
My Joy []
Lights Out []
The Painting Sellers []
Outbound []
Love in Disguise []
16 Wishes []
Bedevilled []
The Autobiography of Nicolae Ceausescu []
The Names of Love []
Le Quattro Volte []
Love Like Poison []
Wrath of the Titans []
How to Train Your Dragon 2 []

292
The Light Thief []
Million Dollar Arm []
Wasted on the Young []
Eye of the Hurricane []
The Lost Bladesman []
Totally True Love []
New Kids Turbo []
Here Comes the Boom []
Sharunas Bartas: An Army of One []
Big Miracle []
Lemonade Mouth []
Three Steps Above Heaven []
Darling []
My Joy []
The Impossible []
Vedam []
[REC] 4: Apocalypse []
[REC] 3: Genesis []
Peace, Love, & Misunderstanding []
Four Days Inside Guantanamo []
Wreckers []
Diary of a Wimpy Kid: Rodrick Rules []
Super 8 []
C.O.G. []
Draquila - L'Italia che trema []
Kapitalism: Our Improved Formula []
I Wish []
The Entitled []
Game of Werewolves []
Kick-Ass 2 []
Christopher and His Kind []
Shapito-shou []
Our Day Will Come []
La èltima cima []
186 Dollars to Freedom []
Ong-bak 3 []
The House of Suh []
Mozart's Sister []
Robert Mitchum Is Dead []
The Doors: When You're Strange []
3x3 []
Night Train to Lisbon []
Thèrèse []
Stephen Hawking's Universe []
Ghost []
My Week with Marilyn []
The Age of Adaline []
The Artist []

293
The Matchmaker []
The Suicide Shop []
Wanderlust []
Apricot []
Bestseller []
A Second Childhood []
Singam []
Special Forces []
Safe []
The Comedian []
Food, Inc. []
The Decoy Bride []
Colombiana []
Louis Cyr []
Gimme Shelter []
Sket []
The Tall Man []
Toast []
Spiders []
The Perks of Being a Wallflower []
The Numbers Station []
Jack and the Cuckoo-Clock Heart []
Our Children []
Cinderella []
Grudge Match []
What a Man []
Cut Bank []
No Rest for the Wicked []
The Chaperone []
Dead Sea []
Chicken with Plums []
On the Ice []
The Unintentional Kidnapping of Mrs. Elfriede Ott []
Pacific Rim []
Madonna's Pig []
Rakhta Charitra []
Happy, Happy []
Jo pour Jonathan []
Cave of Forgotten Dreams []
Dorfman in Love []
Vampires Suck []
From A to B []
The Delay []
The Calling []
Revenge of the Bridesmaids []
Looking for Jackie []
The DUFF []
Food Stamped []

294
La chance de ma vie []
Up There []
Color of the Ocean []
Damsels in Distress []
3096 Days []
Mirror Mirror []
Spark of Being []
I Hate Luv Storys []
Ice Age: Continental Drift []
Sarah's Key []
Heat Wave []
La vita facile []
The Lost Thing []
Now You See Me []
Einer wie Bruno []
Hello! How Are You? []
Der letzte schène Herbsttag []
Burning Heads []
American Animal []
Familiar Grounds []
If Not Us, Who? []
Four Horsemen []
18 Meals []
Bunny Drop []
The Storage []
Love's Resounding Courage []
Batman: Year One []
Tonight You're Mine []
The Good Son []
My Babysitter's a Vampire []
The Twilight Saga: Breaking Dawn - Part 2 []
The Sapphires []
A Cat in Paris []
Falling Overnight []
Marathon Boy []
Kolka Cool []
Keyhole []
Everybody Has a Plan []
Trespass []
The Floating Castle []
Drunk Stoned Brilliant Dead: The Story of the National Lampoon []
Good Night []
Take Shelter []
Zohi Sdom []
The Intouchables []
The Wait []
Intimate Grammar []
Colourful []

295
The Girls in the Band []
Frits en Freddy []
My Last Day Without You []
Mean Girls 2 []
The Pasta Detectives []
Eastern Drift []
360 []
Boris - Il film []
Born to Be Wild []
Women Vs Men []
Men Vs Women []
The Santa Claus Gang []
Qualunquemente []
Klown []
Afghan Luke []
Extraterrestrial []
Stoker []
Bully []
Girl Walks Into a Bar []
Taipei Exchanges []
Green Lantern: Emerald Knights []
The World According to Ion B. []
The Iron Lady []
The Normal Heart []
Welcome to the Punch []
Circumstance []
Majoritè opprimèe []
Microphone []
Love Begins []
Wish You Were Here []
Te presento a Laura []
Creature []
Apnea []
The Source []
Simple Simon []
Hard Labor []
Cinema Komunisto []
Der ganz groèe Traum []
Flying Swords of Dragon Gate []
Vampire Academy []
I Don't Want to Go Back Alone []
Life in a Day []
Terri []
The Awakening []
How Do You Write a Joe Schermann Song []
You Ain't Seen Nothin' Yet []
All for One []
King of Thorn []

296
Despicable Me 2 []
The Pill []
Tony 10 []
City Under Siege []
Planes []
I Melt with You []
High Road []
Carnage []
The Last Lions []
Pinocchio []
Mindfulness and Murder []
New Jerusalem []
Silent Souls []
Moss []
Cool It []
The Guilt Trip []
Tanu Weds Manu []
La otra familia []
The Newest Pledge []
Aquè Entre Nos []
Volcano []
The Human Family Tree []
A Fairly Odd Movie: Grow Up, Timmy Turner! []
Deadly Code []
Fly Away []
Dos []
Sorelle Mai []
All-Star Superman []
Alexander and the Terrible, Horrible, No Good, Very Bad Day []
Catching the Sun []
Drifters []
The Reunion []
Seven Days in Utopia []
Mennesker i solen []
Skyskraber []
Quarantine 2: Terminal []
Beyond the Blackboard []
Beginning of the Great Revival []
Captive []
Peeples []
Unfair World []
!Women Art Revolution []
Serving Life []
Kokowèèh []
Gooische vrouwen []
Eine Insel namens Udo []
The Art of Love []
Manson, My Name Is Evil []

297
Foreign Parts []
The Deep Blue Sea []
The Invisible Woman []
360 []
Tungsten []
Day of the Falcon []
Future Weather []
Urbanized []
Detention []
The Ugly Duckling []
Casa de mi Padre []
Kung Fu Panda Holiday []
Last Hijack []
Justin Bieber: Never Say Never []
Safe Haven []
Lucky []
Sketches of Kaitan City []
Someday This Pain Will Be Useful to You []
The Hunter []
Dimensions []
Pulsar []
Lockout []
Bernie []
Marley & Me: The Puppy Years []
Ghost []
Tabloid []
Mankatha []
Chinese Take-Out []
Tarzan []
The Edge []
The Kingdom of Solomon []
The Ah of Life []
Chronicle []
A Funny Man []
Snowpiercer []
Lovely Molly []
Les Misèrables []
4:44 Last Day on Earth []
Street Kings 2: Motor City []
13 Minutes []
My Sucky Teen Romance []
The Whale []
The Last Days on Mars []
The Lost Valentine []
The Fourth State []
Dragon Age: Dawn of the Seeker []
Metrobranding []
Ismael []

298
Joyful Noise []
Lola Versus []
Bicicleta, cullera, poma []
Omar Killed Me []
21 & Over []
Shameless []
Alex Cross []
The Ages of Love []
The Arrival of Wang []
The Devil's Rock []
The Bay []
Majority []
From the Head []
Der Sommer der Gaukler []
A Crush on You []
Piranha 3DD []
The Spectacular Now []
Yellow Rock []
The Woman []
In the Land of Blood and Honey []
Purge []
Summer of Goliath []
Drift []
Glass Chin []
Midnight's Children []
Do Dooni Chaar []
Oki's Movie []
Only Lovers Left Alive []
Time of Eve []
Anna []
How to Die in Oregon []
Life for Sale []
The Colors of the Mountain []
The Discoverers []
Monster Brawl []
The Inbetweeners Movie []
Dr. Ketel []
The Monkey King []
Dragon []
Dreileben []
Another Happy Day []
Le jeu de la mort []
Neue Vahr Sèd []
Snow on Tha Bluff []
Heleno []
October Baby []
Thank You []
The Green []

299
Friends with Kids []
Neverland []
Tormented []
Pink Saris []
The Swell Season []
Tom Sawyer []
The Butcher, the Chef, and the Swordsman []
Home for Christmas []
Tom and Jerry Meet Sherlock Holmes []
Gang de qin []
Viva Riva! []
The Ditch []
We're the Millers []
Inbred []
The First Assignment []
The Suspicions of Mr Whicher: The Murder at Road Hill House []
Beyond Outrage []
The Preacher's Daughter []
Scared Shrekless []
7 Aum Arivu []
Delhi in a Day []
Barbie: A Fashion Fairytale []
Hello Stranger []
Casus belli []
Killer Joe []
Sacrifice []
Here Comes the Boom []
The Trouble with the Truth []
The Way Way Back []
How to Stop Being a Loser []
Livid []
Sintel []
Scouts Guide to the Zombie Apocalypse []
Fire in Babylon []
Auk Nr. 8 []
Kill Me Please []
Double Dhamaal []
Remembrance []
Men in the City 2 []
Sugar []
Bodyguard []
A Letter to Elia []
Blades of Blood []
Rubble Kings []
Ender's Game []
The Lords of Salem []
Silence []
Drift []

300
ID:A []
Cancel Christmas []
Bekas []
Hospitalitè []
Time Freak []
The Redemption of General Butt Naked []
No One Killed Jessica []
The Price of Sex []
Childish Games []
Eden []
Public Speaking []
Unicorn City []
When Pigs Have Wings []
First Ascent []
So Hard to Forget []
Snow White and the Huntsman []
The Adderall Diaries []
A Place at the Table []
Tick Tock Tale []
Carol Channing: Larger Than Life []
PressPausePlay []
Something Ventured []
Khichdi: The Movie []
The Dynamiter []
The River Murders []
City Slacker []
Motorway []
Trollhunter []
Mere Brother Ki Dulhan []
Lesson Plan []
A Gang Story []
Jersey Boys []
Jersey Boys []
Position Among the Stars []
Sabotage []
Your Sister's Sister []
I Don't Know How She Does It []
Too Big to Fail []
Red Eagle []
The Greatest Movie Ever Sold []
Donovan's Echo []
Guilty of Romance []
Yuma []
When the Lights Went Out []
Into the Middle of Nowhere []
Found in Time []
Buddha Mountain []
Phil Spector []

301
The Stoker []
Too Big to Fail []
Three Quarter Moon []
Brother's Keeper []
Hell and Back Again []
Jig []
Moonrise Kingdom []
Red Lights []
Sound of My Voice []
Tiger Eyes []
Saya-zamurai []
Blood Money []
Buck []
Agency of Vengeance: Dark Rising []
Dance of Outlaws []
Two Rabbits []
Farewell, My Queen []
Ferocious []
Summer Games []
Kalevet []
Karen Cries on the Bus []
Farewell, My Queen []
Motivational Growth []
Naked As We Came []
Kawa []
Forever Yours []
Santa's Apprentice []
You Will Be My Son []
InAPPropriate Comedy []
Waiting for Lightning []
Wartorn: 1861-2010 []
Yeh Saali Zindagi []
Holidays by the Sea []
Welcome to the North []
Carl Panzram: The Spirit of Hatred and Vengeance []
Dookudu []
Marianne []
The Giants []
Starbuck []
The Day []
Twixt []
Double Tide []
Apartment 143 []
Extracted []
Painless []
èVivan las Antipodas! []
Bombay Beach []
Diana []

302
Unconditional []
Like Crazy []
This Is 40 []
The Loving Story []
The Ides of March []
Ill Manors []
Madrid, 1987 []
Codependent Lesbian Space Alien Seeks Same []
One Life []
The Strange Ones []
Walking with Dinosaurs 3D []
Zohi Sdom []
No One Lives []
The First Time []
The First Time []
Arbitrage []
Killing Them Softly []
Styria []
Tad, the Lost Explorer []
The Expendables 2 []
Upside Down: The Creation Records Story []
Bringing Ashley Home []
Poslednyaya skazka Rity []
Koran by Heart []
Killing Them Softly []
Silent House []
Great Migrations []
Shadow Dancer []
El èngel de Budapest []
Apollo 18 []
1911 []
Dragon Day []
Foxfire []
Stonehearst Asylum []
Wreck-It Ralph []
The Forgotten Space []
The Catechism Cataclysm []
Where Do We Go Now? []
Jiro Dreams of Sushi []
The Invader []
Target []
Poongsan []
Poslednyaya skazka Rity []
The Dark Side of Chocolate []
Ship of Theseus []
The Punk Syndrome []
Winds []
Great Migrations []

303
Bettie Page Reveals All []
Don't Go Breaking My Heart []
Kauwboy []
United []
Bobby Fischer Against the World []
Scooby-Doo! Legend of the Phantosaur []
Paranormal Activity 3 []
The Fantastic Flying Books of Mr. Morris Lessmore []
The Culture High []
The Whale []
Manny []
Maktub []
Aftershock []
Stopped on Track []
Anna Karenina []
The Minister []
Jayne Mansfield's Car []
Jayne Mansfield's Car []
Good for Nothing []
Letters from the Big Man []
The Odds []
Ursul []
Two Lives []
John Dies at the End []
Tèkyè kèen []
Groenten uit Balen []
Miss Representation []
The Parade []
A Thousand Cuts []
God Bless Ozzy Osbourne []
Widows []
Fry and Laurie Reunited []
Ricky Rapper and Cool Wendy []
Cyrano Agency []
Fire in the Blood []
Paths of Hate []
Being Elmo: A Puppeteer's Journey []
Jess + Moss []
Mad Bastards []
Madea's Big Happy Family []
Page One: Inside the New York Times []
Naked Harbour []
Resurrect Dead: The Mystery of the Toynbee Tiles []
The Flaw []
The Last Mountain []
To Get Her []
We Were Here []
House of the Rising Sun []

304
Aung San Suu Kyi []
Josè and Pilar []
The Maze Runner []
In Their Skin []
Zero Dark Thirty []
The Campaign []
Amour []
Fight for Your Right Revisited []
Inherent Vice []
Pilgrim Song []
The Maze Runner []
Spooky Buddies []
Superheroes []
Cirque du Soleil: Worlds Away []
Deano and Nige's Best Last Day Ever []
Chromeskull: Laid to Rest 2 []
When Santa Fell to Earth []
Finisterrae []
Eco-Pirate: The Story of Paul Watson []
Superheroes []
Wild Bill []
Tokyo Family []
The Border []
7 Days in Havana []
I Want You []
Banklady []
From Up on Poppy Hill []
Bedevilled []
Rudderless []
This Is Martin Bonner []
Her []
Joanna []
American Hustle []
Barbie: A Fairy Secret []
Argo []
That Awkward Moment []
Brooklyn Castle []
Accused []
Cool Kids Don't Cry []
Bohemian Eyes []
Jacob []
From Up on Poppy Hill []
Me and You []
The Sandman []
The Lady []
Lèrkevej - til dèden os skiller []
Woman in Love []
Miss Farkku-Suomi []

305
The Women on the 6th Floor []
Human Planet []
Brutal Relax []
Genius on Hold []
Lost Christmas []
Mèa []
As I Lay Dying []
Bir Avuè Deniz []
What a Beautiful Day []
Black Thursday []
As Luck Would Have It []
Not Another Happy Ending []
Skew []
The Stig-Helmer Story []
Wasted Youth []
Ecstasy []
Unbroken []
Happiness Is a Warm Blanket, Charlie Brown []
Last Winter []
Zombadings 1: Patayin sa shokot si Remington []
èber uns das All []
Countdown []
Project Nim []
Il giorno in piè []
The Crown Jewels []
After Earth []
Ernest & Celestine []
The Aggression Scale []
Another Me []
The Missing Piece: Mona Lisa, Her Thief, the True Story []
Allez, Eddy! []
Lollipop Monster []
The Place Beyond the Pines []
Is the Man Who Is Tall Happy? []
Girl in Progress []
Chronicle of My Mother []
Dreams of a Life []
Black & White & Sex []
Treasure Island []
Aadukalam []
Cold Blooded []
Happy End []
Kahaani []
Nebraska []
Bullhead []
Easy! []
The Congress []
The Nut Job []

306
Top Cat: The Movie []
Waar []
RED 2 []
My Best Enemy []
Sassy Pants []
èvocateur: The Morton Downey Jr. Movie []
Reagan []
Clutter []
Siberia, Monamour []
Annie []
Scenes from the Suburbs []
We Steal Secrets: The Story of WikiLeaks []
95ers: Echoes []
The Double []
The Light Bulb Conspiracy []
I Am I []
The Entrepreneur []
Phineas and Ferb the Movie: Across the 2nd Dimension []
Midnight FM []
Hotel Swooni []
Avalon []
Mad As Hell []
About Last Night []
Dukhless []
Fools on the Hill []
Captivated: The Trials of Pamela Smart []
Tasting Menu []
So Much Water []
She Monkeys []
Boca []
Harvest []
The Kid with a Bike []
The Ballad of Nessie []
Spike Island []
A Spell to Ward Off the Darkness []
Capitèes da Areia []
Tales of the Night []
Evidence []
Foreverland []
Passion []
Delicacy []
Winter in the Blood []
The Girl and the Fox []
Big Ass Spider! []
Rise of the Guardians []
Shala []
Mad As Hell []
Appropriate Adult []

307
Detective K: Secret of Virtuous Widow []
A Separation []
Pawn's Move []
Avè []
Dhoom:3 []
Mad As Hell []
Mad As Hell []
Tenchi: The Samurai Astronomer []
Geek Charming []
Errors of the Human Body []
Bleak Night []
Great Expectations []
Slow Action []
Shaitan []
The Baytown Outlaws []
Trishna []
Mad As Hell []
War of the Buttons []
Northern Soul []
Queen of the Desert []
The Fifth Estate []
Winter's Tale []
Last Love []
Buck Wild []
Free Ride []
Journey to Agartha []
Ruby Sparks []
Circles []
Recoil []
The Face of Love []
The Magic of Belle Isle []
Divergent []
Ruby Sparks []
The Words []
Angels of Sex []
A Estrada 47 []
The Cat Vanishes []
Where Once We Walked []
Entity []
Kotoko []
Madagascar []
The Unjust []
Winning Streak []
Mourir auprès de toi []
Captain America: The Winter Soldier []
Code Blue []
Thurgood []
Ai Weiwei: Never Sorry []

308
Metro Manila []
12 Dates of Christmas []
A Cube of Sugar []
Reality []
Imagine []
The Heineken Kidnapping []
The Orator []
A Flat for Three []
Around the Block []
Frozen Silence []
Megamind: The Button of Doom []
The Guillotines []
The German Doctor []
Aarakshan []
Life Back Then []
Hello Ghost []
Game Change []
Superstar []
The Finger []
Rhino Season []
To Write Love on Her Arms []
To Write Love on Her Arms []
Goltzius and the Pelican Company []
Ko []
The Snows of Kilimanjaro []
Zhauzhèrek myng bala []
Mr Perfect []
Overheard 2 []
Dream World []
Foo Fighters: Back and Forth []
A Letter to Momo []
My Father and the Man in Black []
Why Stop Now? []
Django Unchained []
You're Next []
Love Is All You Need []
The Union []
Big Sur []
Snow White []
Percy Jackson: Sea of Monsters []
Percy Jackson: Sea of Monsters []
That Burning Feeling []
Beethoven's Christmas Adventure []
End of Watch []
Just Like a Woman []
Resident Evil: Retribution []
Tim and Eric's Billion Dollar Movie []
Third Reich: The Rise & Fall []

309
Hamilton: I nationens intresse []
Little Brother, Big Trouble: A Christmas Adventure []
Django Unchained []
God's Own Child []
The Sorcerer and the White Snake []
Last Passenger []
A Little Thing Called Love []
Not Waving But Drowning []
To Rome with Love []
Black's Game []
Goddess []
Turbo []
Undefeated []
In the Shadow []
Sien nui yau wan []
Safety Not Guaranteed []
Corn Island []
The Employer []
Mamitas []
Millhaven []
Alias Ruby Blade []
Conan O'Brien Can't Stop []
Low Down []
Road North []
Confession of a Child of the Century []
The Student []
Hellbenders []
In the Shadow []
Mission to Lars []
Song of the Sea []
Escort in Love []
The Sessions []
The Battle for Marjah []
Triangle: Remembering the Fire []
The Samaritan []
Thermae Romae []
The Woodsman and the Rain []
Kevin []
100% Love []
Black Pond []
Brazilian Western []
Filly Brown []
SuckSeed: Huay Khan Thep []
The Great Magician []
The East []
Xianshi shi guoqu de weilai []
Won't Back Down []
Blutzbrèdaz []

310
The Judge []
The Amazing Spider-Man 2 []
Liberal Arts []
Here Without Me []
God Loves Uganda []
Musical Chairs []
Into the White []
Hello Herman []
Sparkle []
No Tomorrow []
Five []
Requiem for a Village []
X-Men: Days of Future Past []
World Without End []
Maggie []
Unsere Mètter, unsere Vèter []
A Pigeon Sat on a Branch Reflecting on Existence []
Shakespeare High []
Good Deeds []
Klitschko []
Lucky Them []
Un amor []
Lord of Darkness []
The Legend of Kaspar Hauser []
The Legend of Kaspar Hauser []
The Dead Man and Being Happy []
Crawlspace []
Labrador []
About the Pink Sky []
Billa 2 []
Complicity []
The Painting []
It Was the Son []
Quiz []
The Hoarder []
Ace Attorney []
A.C.A.B. []
How I Live Now []
Cowgirls 'n Angels []
Il castello []
My Little Princess []
The Raid: Redemption []
Haunters []
Himizu []
Scattered Cloud []
Garibaldi's Lovers []
Parker []
The Samurai of Ayothaya []

311
Fast & Furious 6 []
Devil's Pass []
Toomelah []
Looking for Hortense []
Michael []
Yes or No []
Flight []
LUV []
The Piano Tuner []
Nobody Walks []
Stanley's Tiffin Box []
Catching Hell []
Rags []
Nova Zembla []
Miss Bala []
The Call []
Penguins of Madagascar []
God Bless America []
A Little Bit Zombie []
Nurse 3D []
Hayabusa []
Magic Mike []
Shor in the City []
Murder 2 []
Time of My Life []
Another World []
Bachelorette []
Good Vibrations []
Jesus Loves Me []
Numbered []
The Clown []
Pompeii []
Pusher []
The Child []
Zero []
Trash []
Arirang []
Beauty Day []
Anjathe []
Open Road []
Tatsumi []
Sinister []
Ghost Graduation []
Unit 7 []
The Best Offer []
The Angels' Share []
Trance []
Let's Be Cops []

312
Frankenstein's Army []
Fire with Fire []
Once Upon a Time in the North []
Warrior King 2 []
Pyaar Ka Punchnama []
Goodbye []
Shameless []
Jump []
Texas Chainsaw 3D []
After the Dark []
Lines of Wellington []
Heaven Is for Real []
Magic Magic []
People of a Feather []
Terry Pratchett: Choosing to Die []
Comforting Skin []
Cyberbully []
Dolfje Weerwolfje []
The Big Wedding []
Seven Psychopaths []
Isoroku Yamamoto, the Commander-in-Chief of the Combined Fleet []
Thanks for Sharing []
The Paperboy []
What Maisie Knew []
Delhi Belly []
Not Suitable for Children []
The Cat []
Jodorowsky's Dune []
Mud []
Please Kill Mr. Know It All []
The Bling Ring []
Don't Click []
The Brass Teapot []
The Hounds []
The Last Days []
Chinese Puzzle []
The Body []
I Am Jesus []
Dirty Bomb []
Now Is Good []
One Small Hitch []
Sunny []
At Any Price []
London - The Modern Babylon []
Carrie []
Rènia []
Deck the Halls []
The Citizen []

313
Morgan []
A Gun in Each Hand []
Exeter []
Two Days []
18 Years Old and Rising []
The Captains []
Anina []
Dear God No! []
Singham []
Viagem a Portugal []
Prohibition []
Quebrando o Tabu []
Child of God []
Funeral Kings []
Capital []
The Immigrant []
The Look of Love []
The Hangover Part III []
The Hunger Games: Mockingjay - Part 1 []
The Hunger Games: Catching Fire []
Un giorno devi andare []
The Dirty Picture []
I Am Bruce Lee []
Patatje Oorlog []
Gangs of Wasseypur []
See Girl Run []
Space Milkshake []
All Watched Over by Machines of Loving Grace []
Girl Fight []
Paul Williams Still Alive []
Sex Tape []
La Luna []
Low & Clear []
American Mary []
Abiogenesis []
Imaginaerum []
Noah []
Kiss of the Damned []
The Woman in the Septic Tank []
Marie Krèyer []
Bovines []
Nicky's Family []
The Undefeated []
Inside []
Tomorrowland []
In the House []
The Red and the Blue []
Save the Date []

314
Boys of Abu Ghraib []
Dark Girls []
Stalingrad []
The Imposter []
Labor Day []
Infinitely Polar Bear []
Homevideo []
Lincz []
You & Me Forever []
Automata []
Compliance []
General Education []
Leafie, a Hen Into the Wild []
Fraktus - Das letzte Kapitel der Musikgeschichte []
A Most Wanted Man []
Into the Abyss []
And While We Were Here []
Far Out Isn't Far Enough: The Tomi Ungerer Story []
The Two Faces of January []
Somewhere I Have Never Travelled []
Call Girl []
Queen: Days of Our Lives []
Policeman []
Hit 'n Strum []
Schlussmacher []
The Olsen Gang in Deep Trouble []
Magic Beyond Words: The JK Rowling Story []
Rurouni Kenshin []
Rush []
Kung Fu Panda: Secrets of the Masters []
Pain & Gain []
Putzel []
Furious []
Begin Again []
Thor: The Dark World []
Tai Chi Zero []
The Young and Prodigious T.S. Spivet []
The Rise []
Holy Flying Circus []
Pitch Perfect []
Stolen Seas []
Morocco []
Atlas Shrugged II: The Strike []
Austenland []
Altergeist []
Hatfields & McCoys []
Cloudy with a Chance of Meatballs 2 []
After Fall, Winter []

315
A Perfect Plan []
Dad []
Storage 24 []
Tio Papi []
Werewolf: The Beast Among Us []
Exists []
The New Watchdogs []
Dead Before Dawn 3D []
Chained []
The Dancer []
Red Hook Summer []
The Artist and the Model []
El Gringo []
Robot & Frank []
The Island President []
Digging Up the Marrow []
Chernobyl Diaries []
Force []
Il Futuro []
Pandora's Promise []
Tower Block []
Fat Kid Rules the World []
It's a Disaster []
Crulic - drumul spre dincolo []
Home from Home: Chronicle of a Vision []
Trailer Park Jesus []
Laugh at My Pain []
Rafa []
Breathe In []
Machete Kills []
My Tomorrow []
The Adopted []
My Name Is Ki []
Mission Blue []
Jesse Stone: Benefit of the Doubt []
Sanatorium []
Neighbors []
The Frozen Ground []
A Fantastic Fear of Everything []
Jellyfish Eyes []
The 33 []
The Last Man on Earth []
Papadopoulos & Sons []
Computer Chess []
Le grand soir []
Radio Rebel []
Redemption Trail []
Either Way []

316
Devoured []
No Good Deed []
Pastorela []
Banshee Chapter []
The Kitchen []
Monsieur Lazhar []
Scenic Route []
The Wind Rises []
Dawn Rider []
Forever's End []
Spinning Plates []
Hindsight []
Catatan (Harian) si Boy []
Things from Another World []
Guardians of the Galaxy []
Nuit #1 []
The Smurfs 2 []
All Is Lost []
Closer to the Moon []
Journey to the West []
Camille Claudel 1915 []
Back to Stay []
Diary of a Wimpy Kid: Dog Days []
A One-Way Trip to Antibes []
Mama []
Sun Don't Shine []
The Unspeakable Act []
A Christmas Wedding Tail []
El aèo del tigre []
Non-Stop []
Identity Thief []
12 Years a Slave []
Bumblefuck, USA []
War of the Arrows []
Blind []
Smiley []
Blue Caprice []
Druid Peak []
Justice League: Doom []
The Man from the Future []
Deadly Sisters []
Tom and Jerry & The Wizard of Oz []
A Better Life []
Century of Birthing []
The Tsunami and the Cherry Blossom []
The Reluctant Fundamentalist []
Downloaded []
Laggies []

317
The Last Exorcism Part II []
Girls Against Boys []
Shun Li and the Poet []
You Are the Apple of My Eye []
Mann tut was Mann kann []
And They Call It Summer []
Mato Sem Cachorro []
Flicka: Country Pride []
Grand Piano []
The Gambler []
Beauty Is Embarrassing []
Expecting []
The Pact []
Steel []
The Golden Dream []
Inside Llewyn Davis []
Penance []
Doppelgènger Paul []
Islands []
Last Call at the Oasis []
New Kids Nitro []
Night Moves []
Real Playing Game []
Rose []
The Story of Film: An Odyssey []
A Glimpse Inside the Mind of Charles Swan III []
The End []
Men to Kiss []
8:46 []
Mardock Scramble: The Second Combustion []
Old Fashioned []
Italy: Love It, or Leave It []
Glen Campbell: I'll Be Me []
Synchronicity []
Watchers of the Sky []
The Backwater Gospel []
Europa Report []
Diana Vreeland: The Eye Has to Travel []
Gloriously Wasted []
Rust and Bone []
Side Effects []
Age of Uprising: The Legend of Michael Kohlhaas []
Ramin []
80 Millions []
Arcadia []
The Lesser Blessed []
A Bigger Splash []
The Foster Boy []

318
The Railway Man []
Bertsolari []
Cosimo and Nicole []
Gentlemen []
13 Sins []
No []
Manborg []
Muhammad Ali's Greatest Fight []
La vida precoz y breve de Sabina Rivas []
Postman Pat: The Movie []
Courage []
Sister []
King Kelly []
The Road []
Something from Nothing: The Art of Rap []
Hello I Must Be Going []
Smashed []
Laddaland []
A Band Called Death []
Web Junkie []
Bablo []
Mistletoe Over Manhattan []
The Longest Week []
From Above []
Anytime, Anywhere []
Dragons: Gift of the Night Fury []
The Strange History of Don't Ask, Don't Tell []
Tumult []
Any Day Now []
Tale of a Forest []
The Third Half []
Gun Hill []
Border Run []
Shanghai Calling []
Silenced []
Populaire []
Palme []
Lycka till och ta hand om varandra []
Wonder Women! The Untold Story of American Superheroines []
Temptation: Confessions of a Marriage Counselor []
Ultrasonic []
Open Grave []
Scarecrow []
Super Demetrios []
Business Man []
It's in the Blood []
Fanatics []
Soundbreaker []

319
Shanghai []
Stockholm East []
The King Is Dead! []
Cottage Country []
The Client []
The Other Son []
Still Mine []
Saheb Biwi Aur Gangster []
Shining Night: A Portrait of Composer Morten Lauridsen []
To the Arctic 3D []
The Suspect []
An Oversimplification of Her Beauty []
Lad: A Yorkshire Story []
The Invisible Front []
J.A.C.E. []
The Invisible Men []
The Substance: Albert Hofmann's LSD []
My Way []
The Worst Week of My Life []
Teacher of the Year []
Toad Road []
Ethel []
Escape []
Aya of Yop City []
Blackbird []
Sleepwalk with Me []
Zarafa []
009 Re: Cyborg []
Of Snails and Men []
Key of Life []
It's Such a Beautiful Day []
Herman's House []
Hansel & Gretel Get Baked []
Her Master's Voice []
Armed Response []
May I Kill U? []
Looking for Maria Sanchez []
Nameless Gangster: Rules of the Time []
Hannah's Law []
Rat King []
Ballroom Dancer []
The Best Man Holiday []
A Dark Truth []
Trouble with the Curve []
Ashley []
Terms and Conditions May Apply []
The Imitation Game []
The Scapegoat []

320
Eat Sleep Die []
Unbowed []
The Temple []
Lovely Man []
Starship Troopers: Invasion []
Amen []
The King of Pigs []
Big Game []
Curfew []
Downeast []
Call Me Kuchu []
Rising from Ashes []
The Hijack That Went South []
Shell []
The Atomic States of America []
Big Boys Gone Bananas!* []
Of Two Minds []
My Straight Son []
Everyone's Going to Die []
Loves Her Gun []
Treading Water []
Promised Land []
Dead Europe []
What Richard Did []
Jupiter Ascending []
Frozen Planet []
Escape Fire: The Fight to Rescue American Healthcare []
Home []
When Day Breaks []
The Returned []
Fort Bliss []
From Dad to Son []
El Nièo []
Hours []
Runoff []
Much Ado About Nothing []
Dead Man's Burden []
The Easy Way Out []
Haute Cuisine []
Mad Ship []
Mother of George []
Svend []
Seal Team Six: The Raid on Osama Bin Laden []
Blowfish []
L []
Inside Out []
Dumb and Dumber To []
McFarland, USA []

321
Hit and Run []
Pieces of Talent []
Ice Age: A Mammoth Christmas []
Anton Corbijn Inside Out []
Knight of Cups []
Spring Breakers []
The Physician []
The Patrol []
Artificial Paradises []
I Do []
The Girl and Death []
Tammy []
Emperor []
Adore []
Dawn of the Planet of the Apes []
Radiostars []
A Common Man []
Amor? []
V/H/S []
Into the Storm []
Deadline []
Flicker []
The Hunt []
Mèbius []
The Taste of Money []
Tepenin Ardi []
Bad Hair Friday []
Diana []
Schutzengel []
The Practice of Beauty []
Unter Umstènden verliebt []
Vietnam in HD []
Kings Point []
Paranormal Activity 4 []
Stateless Things []
Transformers: Age of Extinction []
Raze []
Mea Maxima Culpa: Silence in the House of God []
For No Good Reason []
Comme des frères []
Monica Z []
Thale []
Under African Skies []
Louis C.K.: Live at the Beacon Theater []
This Ain't California []
The Inevitable Defeat of Mister & Pete []
Wild Horse, Wild Ride []
Victor and the Secret of Crocodile Mansion []

322
Elsa & Fred []
The 100-Year-Old Man Who Climbed Out the Window and Disappeared []
Death of a Man in the Balkans []
The Wee Man []
Walesa: Man of Hope []
The Woman Who Wasn't There []
Ginger & Rosa []
The Taiwan Oyster []
Vysotskiy. Spasibo, chto zhivoy []
Beduin []
Ping Pong []
The Final Girls []
Special ID []
Let the Fire Burn []
Maximum Conviction []
Pixels []
Shock Head Soul []
Nailbiter []
Little Black Spiders []
We're Not Broke []
Father's Chair []
Beasts of the Southern Wild []
Abendland []
Charles Bradley: Soul of America []
The Last Elvis []
Searching for Sugar Man []
The Queen of Versailles []
San Andreas []
Stitches []
The Stone Roses: Made of Stone []
Prora []
Mockingbird Lane []
These Birds Walk []
West of Memphis []
The Mule []
Graceland []
Almost 18 []
Zaytoun []
The Bling Ring []
Life's a Breeze []
The Girl []
The Gruffalo's Child []
I Declare War []
The Color of Time []
Exit Elena []
Electrick Children []
Estamos Juntos []
Mass Effect: Paragon Lost []

323
Wolf Children []
Saving Face []
Saving Mr. Banks []
Stalled []
The Pretty One []
Two Night Stand []
Xingu []
Stars Above []
Le monde doit m'arriver? []
Umbkotid []
Muirhouse []
Vazhakku Enn 18/9 []
Helter Skelter []
Speed: In Search of Lost Time []
Snow in Paradise []
Das Leben ist nichts fèr Feiglinge []
The Extreme Tragic Story of Celal Tan and His Family []
My Grandfather's People []
Renoir []
Two Hundred Thousand Dirty []
A Story of Yonosuke []
The Pervert's Guide to Ideology []
Subramaniapuram []
Tabu []
Rommel []
Adam and Dog []
Scooby-Doo! Music of the Vampire []
Dancing on the Edge []
Wagner's Dream []
Turning Tide []
Drug War []
Fear Clinic []
In Fear []
Let It Shine []
Batman: The Dark Knight Returns, Part 2 []
Tracks []
Getaway []
The Men Who Built America []
Things We Do for Love []
Southwest []
Finding Mr. Right []
Bad Words []
Horrible Bosses 2 []
St. Vincent []
Empire State []
Calm at Sea []
Nightfall []
Smè citroner gula []

324
The Deposit []
Maps to the Stars []
Life in a Fishbowl []
Metallica Through the Never []
The Art of the Steal []
All About My Wife []
The Wooden Bridge []
To Be Takei []
Spirit []
Humano []
The Longest Daycare []
Highway of Tears []
As It Is in Heaven []
The End of Time []
For a Woman []
Carmina or Blow Up []
Caesar Must Die []
The Monuments Men []
The Search []
We Are Legion: The Story of the Hacktivists []
The Rocket []
Aujourd'hui []
Barbara []
Cut! []
Empire of Dirt []
Gideon's Army []
I Will Follow You Into the Dark []
The Kings of Summer []
What's in a Name? []
American Sniper []
90 Minutes []
Crowsnest []
Into the Woods []
Remote Area Medical []
The Strange Case of Wilhelm Reich []
Im Sommer wohnt er unten []
Shahid []
Fanie Fourie's Lobola []
Frost []
Houston []
Ritual []
Legenda No. 17 []
Reis e Ratos []
The Old Man []
The Dragonphoenix Chronicles: Indomitable []
Silent Ones []
The Fruit Hunters []
Boy Eating the Bird's Food []

325
Premature []
Earth to Echo []
Song One []
Gotti []
Isdraken []
Dormant Beauty []
The Purge []
Beside Still Waters []
So It Goes []
The Little Ghost []
Cold War []
Battle Ground []
Houston []
It Boy []
Landmine Goes Click []
Lions []
Child's Pose []
Pernicious []
Faro []
Lost and Beautiful []
Patch Town []
Little Monsters []
Neighboring Sounds []
Safelight []
Living []
Stage Fright []
A Promise []
Sex, Drugs & Taxation []
The Towrope []
Grown Ups 2 []
The Look of Love []
Red Knot []
The Dark Horse []
Gulf Stream Under the Iceberg []
Short Stories []
Above Dark Waters []
The Counselor []
Hammer of the Gods []
History of the Eagles Part One []
Finding Fela! []
è moi seule []
About Time []
Kokowèèh 2 []
The Disciple []
The Almost Man []
The Neighbors []
Prince Avalanche []
The Elevator: Three Minutes Can Change Your Life []

326
Mig èger ingen []
Teenage []
Les manèges humains []
Les petits princes []
Barbie in a Mermaid Tale 2 []
Brasserie Romantiek []
Chainsaw Maid []
Coldwater []
The Judgement []
Vishwaroopam []
Rat Fever []
Fuck Up []
The Hot Flashes []
The Other Woman []
Wildlike []
Somm []
The Devil's Carnival []
Room 514 []
Generation Iron []
One Mile Away []
Eyjafjallajèkull []
Concepcièn Arenal, la visitadora de cèrceles []
The Brain Man []
Move []
Our Little Differences []
Vanishing Waves []
Aftermath []
Poka noch ne razluchit []
You Are God []
E Aè… Comeu? []
Before Midnight []
Transcendence []
Berserk: The Golden Age Arc I - The Egg of the King []
God Is the Bigger Elvis []
Lullaby []
Liza, the Fox-Fairy []
Jimmy P. []
Pecoross' Mother and Her Days []
Hilda []
Zhauzhèrek myng bala []
Amma Lo-Fi []
Daddy's Little Girl []
Confine []
Half of a Yellow Sun []
Hiver nomade []
Inequality for All []
The Nun []
Little Thirteen []

327
Madea's Witness Protection []
Paulette []
Goliyon Ki Rasleela Ram-Leela []
Katy Perry: Part of Me []
A Hijacking []
Reaching for the Moon []
Louder Than Bombs []
Newlyweeds []
Ustad Hotel []
Fill the Void []
Seymour: An Introduction []
Return to Nim's Island []
Shepard & Dark []
The Noble Family []
Draft Day []
Sweetwater []
Complicit []
Superman vs. The Elite []
Demons []
Walker []
Family Way []
Jaurès []
The Landlords []
Insidious: Chapter 2 []
The Orheim Company []
Il mundial dimenticato []
Omertè []
Enter the Dangerous Mind []
Don Jon []
Wer []
Spieltrieb []
Curse of Chucky []
Rio 2096: A Story of Love and Fury []
The Man in the Orange Jacket []
A Killer Among Us []
Hit & Miss []
Canopy []
Sand Castles []
Benigni []
Calvary []
Stay []
The Internship []
Sparks []
An Amish Murder []
A Castle in Italy []
Dear White People []
The Quiet Ones []
Geography Club []

328
Mystery Road []
Geography Club []
White Bird in a Blizzard []
American Winter []
Mushrooming []
Think Like a Man Too []
Political Animals []
White Rabbit []
An American Ghost Story []
Thesis on a Homicide []
Under the Rainbow []
Restless []
Horsehead []
Alcan Highway []
I'm So Excited! []
Swung []
Daddy, I'm a Zombie []
A Haunted House []
Guardians of the Galaxy []
Bwakaw []
Chernobyl Diaries []
I Give It a Year []
Paziraie sadeh []
Big Hero 6 []
The Cut []
The History of Future Folk []
The Source Family []
Contest []
The Kiyosu Conference []
The Bible []
An Honest Liar []
Maattrraan []
Rentaneko []
Kano []
2016: Obama's America []
Marvel One-Shot: Item 47 []
2 + 2 []
The Film Critic []
Zulu []
Sonja and the Bull []
Araf/Somewhere in Between []
SAGA: Curse of the Shadow []
The Old Man []
Dark Was the Night []
Territory []
Macropolis []
Family United []
Jack []

329
Soar Into the Sun []
Camille Rewinds []
Consuming Spirits []
Aiyyaa []
Do I Have to Take Care of Everything? []
Hitched for the Holidays []
Metal Brothers []
Two Men in Town []
Eega []
Fading Gigolo []
One. Two. One []
The World Before Her []
Villegas []
Wadjda []
Tapia []
Differently, Molussia []
Chasing Beauty []
A Five Star Life []
Dragon Age: Dawn of the Seeker []
How to Meet Girls from a Distance []
The Gilded Cage []
The Book of Life []
Spud 2: The Madness Continues []
Halo 4: Forward Unto Dawn []
Long Way North []
The Hollow Crown []
More Than Honey []
Convenience []
Soar Into the Sun []
The Maid's Room []
Dragon Ball Z: Battle of Gods []
A Short History of Decay []
The Raid 2 []
Drinking Buddies []
Sweet Micky for President []
The Lifeguard []
Magical Universe []
Gone Girl []
Magic Mike XXL []
These Final Hours []
Puss in Boots: The Three Diablos []
Museum Hours []
George Lopez: It's Not Me, It's You []
Mission: Sputnik []
Inori []
Devil's Pass []
True Story []
Bad Milo []

330
Eat with Me []
Vegetarian Cannibal []
Must Have Been Love []
Redirected []
A Little Game []
The Man Who Saved the World []
S#x Acts []
American Dreams in China []
The Grand Budapest Hotel []
Forgotten []
The Brussels Business []
The SpongeBob Movie: Sponge Out of Water []
Real []
21 Ways to Ruin a Marriage []
A Christmas Story 2 []
A Magnificent Haunting []
Body Fat Index of Love []
Vanishing Pearls: The Oystermen of Pointe a la Hache []
Muppets Most Wanted []
The Possession of Michael King []
Our Nixon []
Platinum Data []
The Samurai That Night []
The Book Thief []
Supermarket []
OMG: Oh My God! []
Mary and Martha []
OMG: Oh My God! []
Sleeping with the Fishes []
The Right Kind of Wrong []
Man from Reno []
Mary and Martha []
It's Just a Ride []
Bitch Hug []
The Conductor []
Ego []
Girl Walk: All Day []
On My Way []
Along the Roadside []
Once Upon a Time in Shanghai []
Design of Death []
Every Blessed Day []
Road to Ninja: Naruto the Movie []
The Wind Rises []
Juvenile Offender []
The Billionaire []
The Canyons []
22 Jump Street []

331
Lesson of the Evil []
First Winter []
Frozen []
In a World… []
Informant []
Mansome []
Souls of Zen []
Hunting Elephants []
Tai Chi Hero []
Concussion []
Head Over Heels 2 []
Melody []
The Legend of Sarila []
Whitewash []
Love Is in the Air []
Suzanne []
La cinquième saison []
Killing Lincoln []
A Special Day []
Pieta []
Shootout at Wadala []
Queen of Montreuil []
All About You []
Olympus Has Fallen []
My Beautiful Country []
We Are the Freaks []
The Selfish Giant []
23 Blast []
Gabbar Singh []
Mandela: Long Walk to Freedom []
The Green Prince []
Wild []
One Eyed Girl []
A Night in Old Mexico []
Traffickers []
Born to Hate… Destined to Love []
We Are What We Are []
Singham Returns []
The Gatekeepers []
Afflicted []
Fresh Guacamole []
Birders: The Central Park Effect []
The Hobbit: The Battle of the Five Armies []
Aim High in Creation []
Healing []
La vida inesperada []
Grantham & Rose []
Reincarnated []

332
Death of a Shadow []
Homefront []
Batman: The Dark Knight Returns, Part 1 []
Casting Couch []
Afternoon Delight []
The Real Miyagi []
Imagine I'm Beautiful []
Me, Myself and Mum []
The Great Passage []
The Hour of the Lynx []
American Courtesans []
For Those in Peril []
Enemy []
Big Easy Express []
Beauty and the Beast []
The Better Angels []
The Machine []
Mantervention []
White Tiger []
Echo Planet []
Game Over []
Margarita []
Margarita []
Out in the Dark []
The Final Member []
The Grand Seduction []
Calloused Hands []
Moms Mabley: I Got Somethin' to Tell You []
Seeking Asian Female []
Uncanny []
The Spy []
If You Build It []
Fifty Shades of Grey []
The Deflowering of Eva Van End []
Shahid []
The Notebook []
Beyoncè: Life Is But a Dream []
Cyanide []
Heiter bis wolkig []
In the Fog []
Liz in September []
Open Up to Me []
Strangerland []
Teen Beach Movie []
Girl Vs. Monster []
The Captive []
The Identical []
Offline []

333
Liv & Ingmar []
The Big Ask []
The Weight of the Nation []
As One []
Asura []
The Formula []
Hank and Asha []
Wrestling Queens []
Anchorman 2: The Legend Continues []
Julayi []
Village People []
The Girl from Nowhere []
Blind Detective []
The Spirit of '45 []
The Spirit of '45 []
Deepsea Challenge 3D []
Everybody's Got Somebody… Not Me []
Somewhere in Palilula []
7 Boxes []
The Expendables 3 []
The Zero Theorem []
Cas & Dylan []
Fruitvale Station []
Madame Bovary []
Qissa: The Tale of a Lonely Ghost []
A Magnificent Haunting []
White House Down []
Blue Jasmine []
El rostro []
The Wild Ones []
She Made Them Do It []
Inch'Allah []
Architecture 101 []
Cinemanovels []
PK []
Gold []
Finsterworld []
Letters to Sofija []
Aliyah []
Ape []
East Side Sushi []
The Last of the Unjust []
Juvenile Offender []
Come Out and Play []
Cine Hollièdy []
Run & Jump []
No Place on Earth []
The Boy in the Mirror []

334
Amiche da morire []
The Dead and the Living []
A Patriotic Man []
Liar's Dice []
Heart of a Lion []
Third Person []
Kadal []
Parkland []
Leprechaun: Origins []
The Rover []
Unforgiven []
Shield of Straw []
Frances Ha []
Open Heart []
Third Person []
The Lunchbox []
Revolution []
Flu []
Nude Area []
The Dinner []
1,000 Times Good Night []
I am Von Hèfler Variation on Werther []
Les gamins []
McCullin []
Croczilla []
Barefoot []
Cutie and the Boxer []
Bhaag Milkha Bhaag []
Ostwind - Zusammen sind wir frei []
An American Terror []
Bound by Flesh []
Jobs []
Rio 2 []
Underground: The Julian Assange Story []
The Dust Bowl []
Honey []
Zanjeer []
Bridegroom []
The Snow on the Pines []
All the Wilderness []
I Am Big Bird: The Caroll Spinney Story []
Lucia []
Berserk: The Golden Age Arc III - The Advent []
Berserk: The Golden Age Arc II - The Battle for Doldrey []
Daylight []
Blue Ruin []
Squatters []
Two Years at Sea []

335
Underground: The Julian Assange Story []
Linsanity []
Three Sisters []
Barefoot []
Antarctica: A Year on Ice []
Five Star []
Cheatin' []
Parviz []
Saheb Biwi Aur Gangster Returns []
Hotell []
Ragnarok []
Het Bombardement []
The Summit []
El bosc []
A Thirsty World []
Runner Runner []
Touchy Feely []
Kid []
Yardbird []
Stories We Tell []
Lost River []
Made in America []
Thank You a Lot []
15 Years and One Day []
Leaving on the 15th Spring []
Assault on Wall Street []
Cat Shit One []
Minuscule: Valley of the Lost Ants []
After Lucia []
Eskil & Trinidad []
Fame High []
Touch of the Light []
Horses of God []
Need for Speed []
Mystery []
Pioneer []
Space Station 76 []
Three Worlds []
When I Saw You []
Balancing Act []
Milius []
Crossfire Hurricane []
Short Term 12 []
Baby Blues []
Artifact []
Secrets of War []
Camp []
Balancing Act []

336
Moomins on the Riviera []
The Neighbors []
Kick []
Oh Willy… []
Harry Dean Stanton: Partly Fiction []
Mord in Eberswalde []
The Best of Men []
Metalhead []
BFFs []
Liz & Dick []
One Piece Film Z []
The Last Light []
Almost Married []
Venus and Serena []
The Cabining []
Deliver Us from Evil []
I Belong []
Violet []
Special 26 []
Scorpion in Love []
8-Ball []
Instructions Not Included []
Meet the Patels []
Avenged []
Sofia's Last Ambulance []
When Jews Were Funny []
Cruel & Unusual []
Monster Pies []
Gone Fishing []
Approaching the Elephant []
Stockholm []
Words and Pictures []
Winter of Discontent []
Jamie Marks Is Dead []
Fed Up []
The Rambler []
Compulsion []
Life Itself []
Joe []
Jacky in the Kingdom of Women []
The Sacrament []
Only Daughter []
Pretty Butterflies []
D-Day []
Bian jing feng yun []
Rhymes for Young Ghouls []
Sunrise []
American Revolutionary: The Evolution of Grace Lee Boggs []

337
Una piccola impresa meridionale []
Vic + Flo Saw a Bear []
The Capsule []
The Education of Mohammad Hussein []
The Damned []
Dinotasia []
The Liberator []
The Special Need []
The Girl on the Train []
Kidnapped for Christ []
Ain't Them Bodies Saints []
Oculus []
Molly Maxwell []
Paperman []
Gasht-e ershad []
Vergiss mein nicht []
Cuban Fury []
A Muse []
It's Me, It's Me []
Enough Said []
Medeas []
Shana: The Wolf's Music []
The Unknown Known []
Head Over Heels []
Loitering with Intent []
Le Week-End []
I Am Breathing []
Reality []
Women's Day []
Gabriel []
Home []
Too Late []
A Heartland Christmas []
Doomsdays []
Still Life []
The Weight of Elephants []
Avengers: Age of Ultron []
The Priest's Children []
Thy Womb []
It's Such a Beautiful Day []
Coffee, Kill Boss []
Cold Harbour []
Farah Goes Bang []
Twenty Feet from Stardom []
Moon Man []
Predestination []
The Homesman []
Growing Up and Other Lies []

338
Les Invisibles []
What If… []
The Barkley Marathons: The Race That Eats Its Young []
Susie's Hope []
The Invitation []
The Last Chance: Diary of Comedians []
Tracers []
Trashed []
Richard Pryor: Omit the Logic []
De Marathon []
The Devil's Violinist []
Anomalisa []
Jimi: All Is by My Side []
The Reunion []
My Sweet Orange Tree []
Der Bau []
Felony []
Carol []
Ping Pong Summer []
Desert Dancer []
The Green Inferno []
Kokoko []
7th Floor []
Altman []
Belle []
The Eternal Zero []
The Family []
The Past []
The Grand Budapest Hotel []
The Heat []
Ushi Must Marry []
Copperhead []
Witching and Bitching []
Concrete Night []
Stand Clear of the Closing Doors []
A Bit of Bad Luck []
Walking the Camino: Six Ways to Santiago []
Ek Thi Daayan []
The Human Factor []
B.A. Pass []
Killers []
Why Don't You Play in Hell? []
Open Windows []
The Amazing Catfish []
Santa Paws 2: The Santa Pups []
Black & White Episode 1: The Dawn of Assault []
The Human Scale []
Frequencies []

339
The Wolfpack []
Inner Worlds, Outer Worlds []
36 []
Filmistaan []
Rubinrot []
Three Many Weddings []
Like the Wind []
Red Obsession []
Sexo fècil, pelèculas tristes []
12 O'Clock Boys []
Late Phases []
Paris è tout prix []
The Princess of Egypt []
Boy Upside Down []
The Challenger Disaster []
Palmipèdarium []
Butterfly Girl []
Mardock Scramble: The Third Exhaust []
Gloria []
Easy Money III: Life Deluxe []
Una famiglia perfetta []
Creep []
G.B.F. []
Shed No Tears []
The Ghost and the Whale []
Hanna's Journey []
After Tiller []
Philomena []
Meet the Hitlers []
Best Kept Secret []
Les coquillettes []
Mother, I Love You []
Dead Man Talking []
The Invoking []
Antboy []
Exhibition []
Goodbye to All That []
Bank$tas []
The Keeper of Lost Causes []
Chuck Norris vs Communism []
Ring of Fire []
Anything for Alice []
The Boy []
Girl Rising []
Molly Moon and the Incredible Book of Hypnotism []
B-Side []
Toy Story of Terror []
Taken 3 []

340
Next Goal Wins []
Bianca come il latte, rossa come il sangue []
The Genius of Marian []
The Wizards Return: Alex vs. Alex []
I Am Thor []
V/H/S/2 []
TINY: A Story About Living Small []
Gone Too Far []
Drinking Buddies []
Son of a Gun []
Clouds of Sils Maria []
All That I Am []
Compared to What: The Improbable Journey of Barney Frank []
The Last Tycoon []
Bears []
The Other Shore []
Copenhagen []
In the Name of the Son []
Something, Anything []
Happy New Year []
Man Down []
The Escape []
My Mom Is a Character []
Coming to Terms []
Licks []
The Single Moms Club []
And So It Goes []
Human Capital []
The Short Game []
Heavenly Shift []
Left Behind []
Beyond the Edge []
Confession of Murder []
Don't Cry, Mommy []
Regret! []
Oxyana []
Get on Up []
Paranormal Activity: The Marked Ones []
Mr. Turner []
The Last Five Years []
Lawrence & Holloman []
Attila Marcel []
Elena []
Our Vinyl Weighs a Ton: This Is Stones Throw Records []
We Always Lie to Strangers []
Manhunt []
Delhi Dance []
Grand Masti []

341
West []
Field of Lost Shoes []
Palo Alto []
The Grump []
Which Way Is the Front Line from Here? The Life and Time of Tim Hetherington []
Doc of the Dead []
Sunshine on Leith []
Pussy Riot: A Punk Prayer []
Stockholm, Pennsylvania []
The Pirate Fairy []
5 to 7 []
Ti mene nosis []
Mister John []
The Keeping Room []
A.C.A.B. All Cats Are Brilliant []
The Trials of Muhammad Ali []
The Fifth Wheel []
May in the Summer []
Muscle Shoals []
Die Welt []
Min sèsters bèrn i Afrika []
Aloft []
Stockholm Stories []
Loving []
Ip Man: The Final Fight []
The Crash Reel []
Spongebob Squarepants 4D Attraction: The Great Jelly Rescue []
Don't Hug Me I'm Scared []
Narco Cultura []
Wolf []
Soulmate []
All Eyes and Ears []
Good Ol' Freda []
Me Him Her []
Poor Us: An Animated History of Poverty []
An Episode in the Life of an Iron Picker []
Viva l'Italia []
Where the Trail Ends []
Frontera []
Louis C.K. Oh My God []
Cold Comes the Night []
Helium []
Jealousy []
Puerta de Hierro, el exilio de Perèn []
Kenau []
The Dark Matter of Love []
Rosenwald []
Brave Miss World []

342
Medora []
Escobar: Paradise Lost []
One Direction: This Is Us []
They Are All Dead []
Anna Nicole []
Sequoia []
20 Ft Below: The Darkness Descending []
The Suicide Theory []
Da geht noch was! []
The Canal []
1 []
Tales from the Organ Trade []
Benji []
See You Next Tuesday []
The Mighty Angel []
Shutter []
Long Live Freedom []
Miguel San Miguel []
Rock the Casbah []
A Fragile Trust: Plagiarism, Power, and Jayson Blair at the New York Times []
The Russian Novel []
The Little House []
The Expedition to the End of the World []
Love Is Blind []
Risttuules []
I Survived a Zombie Holocaust []
Picas []
Nebesnye zheny lugovykh mari []
App []
Smart Ass []
Call Me Crazy: A Five Film []
Soof []
Something Good: The Mercury Factor []
Miss Zombie []
Life Inside Out []
Brand New-U []
The Concubine []
The Enemy Within []
Admiral []
American Promise []
Blackfish []
Citizen Koch []
Meru []
Starship: Rising []
Little Hope Was Arson []
The Worst Christmas of My Life []
Lasting []
Wajma, an Afghan Love Story []

343
Google and the World Brain []
26 Years []
The Legend of Barney Thomson []
Ghadi []
The Infinite Man []
Documentarian []
Spark: A Burning Man Story []
The Casual Vacancy []
An Unreal Dream: The Michael Morton Story []
Matt Shepard Is a Friend of Mine []
Maidentrip []
Arrambam []
Holiday []
Plastic []
Iceman []
A Million Ways to Die in the West []
The Last Survivors []
Life According to Sam []
Je suis supporter du Standard []
Preggoland []
Lilting []
Quiet Riot: Well Now You're Here, There's No Way Back []
The Town That Dreaded Sundown []
Birdman: Or (The Unexpected Virtue of Ignorance) []
The Devil's Path []
Seoul Searching []
Suddenly []
BMF: The Rise and Fall of a Hip-Hop Drug Empire []
White Reindeer []
Boss []
Onneli ja Anneli []
Hal []
Studio illegale []
Gulaab Gang []
The Bachelor Weekend []
Cut Snake []
Septic Man []
Nobody's Daughter Haewon []
The Tale of The Princess Kaguya []
Traffic Department []
Valentine Road []
Krampus: The Christmas Devil []
The Survivalist []
La scelta []
Life After Beth []
Wolfskinder []
Julia []
Me and Earl and the Dying Girl []

344
Whiplash []
The Fault in Our Stars []
Usain Bolt: The Fastest Man Alive []
Avenged []
Son of Mine []
Twist of Faith []
Pizza []
The Strange Little Cat []
Scooby-Doo! Mask of the Blue Falcon []
Yes or No: Come Back to Me []
The Garden of Words []
Whatcha Wearin'? []
Ban-chang-ggo []
In the Courtyard []
Lulu femme nue []
Bridge and Tunnel []
The Major []
Tavarataivas []
Maèna []
Countdown []
Quièn matè a Bambi? []
Lenny Cooke []
The Butterfly's Dream []
Manhattan Romance []
Tyler Perry's A Madea Christmas []
Kevin Hart: Let Me Explain []
Difret []
Force of Execution []
Virgin Mountain []
'71 []
Umrika []
City of Gold []
Keeping Rosy []
Leave to Remain []
Marina []
First Cousin Once Removed []
Algorithms []
Blind []
The Blue Umbrella []
Superman: Unbound []
Jug Face []
Jolly LLB []
American Vagabond []
Crimes Against Humanity []
Holidaze []
Bella Vita []
Noble []
Takedown: The DNA of GSP []

345
Catch Me Daddy []
Closed Curtain []
The Giant King []
The Activist []
We Cause Scenes []
Eltern []
The Day That Lasted 21 Years []
Tru Love []
The Retrieval []
Ghost in the Shell Arise: Border 1 - Ghost Pain []
Tony Benn: Will and Testament []
Tutti contro tutti []
Shirley: Visions of Reality []
Don't Go to the Reunion []
September []
Love Is Strange []
The House at the End of Time []
Queen of the Mountains []
Penumbra []
Mr. Kaplan []
The Quiet Hour []
The Plague []
Metro []
The Ghost Army []
The Escape Artist []
Monster High: Friday Night Frights []
Matterhorn []
Northwest []
A Long and Happy Life []
In the Name Of []
Carmin Tropical []
Senotaji []
The Good Lie []
Iron Man: Rise of Technovore []
My Dog Killer []
Whiplash []
The Ghosts in Our Machine []
Bang Bang Baby []
The Eternal Return of Antonis Paraskevas []
11.6 []
Buzzard []
Commando []
Victor Young Perez []
Ku! Kin-dza-dza []
Miracle in Cell No. 7 []
LFO []
10%: What Makes a Hero? []
An Adventure in Space and Time []

346
UMMAH - Unter Freunden []
It's Only Make Believe []
Rabbit and Deer []
What's Left of Us []
Miss Julie []
Ruined Heart: Another Lovestory Between a Criminal & a Whore []
Time Lapse []
Frau Ella []
Youth []
I Feel Sleepy []
Love Games []
Broken Glass Park []
Silent Retreat []
The Scopia Effect []
Tom Dick & Harriet []
Keep on Keepin' On []
Ad Inexplorata []
Dedh Ishqiya []
In Order of Disappearance []
The Smoke Seller []
Hey Bartender []
Call Girl of Cthulhu []
Broadway Idiot []
Kalervo Palsa ja kuriton kèsi []
History of Fear []
Het Vonnis []
October Gale []
Night at the Museum: Secret of the Tomb []
Locke []
Young Ones []
Oliver's Deal []
Fist of Jesus []
Two Shots Fired []
Saint Laurent []
Yves Saint Laurent []
Bonnie and Clyde []
Life of a King []
HK: Forbidden Super Hero []
Burton and Taylor []
AfterDeath []
Peace After Marriage []
Diary of a Chambermaid []
Bonobo []
Fury []
Living Images []
Miraculum []
On the Job []
The Riot Club []

347
Ida []
The King's Surrender []
Blackhat []
Honeymoon []
Papusza []
The Salvation []
P-51 Dragon Fighter []
Hide and Seek []
Zeit der Kannibalen []
Sharknado []
Korso []
What We Did on Our Holiday []
Berkshire County []
The Longest Ride []
Fool's Day []
Fifi Howls from Happiness []
The Kill Team []
Nobody Wants the Night []
Mistaken for Strangers []
Two Days, One Night []
Desolate []
Decency []
Will You Still Love Me Tomorrow? []
Two: The Story of Roman & Nyro []
Pluto []
Out of the Blue []
Rosewater []
Devil's Due []
Kick-Heart []
The One I Love []
Winter Sleep []
The Third Half []
Code Black []
Quantum Love []
Na kathesai kai na koitas []
My Man []
Phoenix []
So Young []
Krot na more []
The Life and Mind of Mark DeFriest []
The Games Maker []
Benvenuto Presidente! []
Faith Connections []
Solan og Ludvig - Jul i Flèklypa []
Veronica Mars []
The Perfect 46 []
Rigor Mortis []
Antisocial []

348
Pee Mak []
WolfCop []
Eadweard []
Top Five []
The Little Death []
Jack Strong []
America: Imagine the World Without Her []
Way Beyond Weight []
Transformers Prime Beast Hunters: Predacons Rising []
The Interview []
X/Y []
Beloved Sisters []
Love Building []
Gasland Part II []
Je fais le mort []
Jibeuro ganeun gil []
Bombay Talkies []
The Hybrid []
Darkness on the Edge of Town []
Atlas Shrugged: Who Is John Galt? []
Serial (Bad) Weddings []
All of Me []
Kingsman: The Secret Service []
Leviathan []
The Closed Circuit []
No Thank You []
Tokyo Tribe []
Killing Kennedy []
The Childhood of a Leader []
When Animals Dream []
Everything I Can See From Here []
The Last Call []
Furious 7 []
The Rise and Rise of Bitcoin []
Future Shock! The Story of 2000AD []
3 Hearts []
Nothing Bad Can Happen []
Carmina y amèn. []
Deadly Virtues: Love.Honour.Obey. []
Blood Punch []
Fandry []
Silenced []
Hoovey []
Hawking []
Dr. Cabbie []
Dead Snow 2: Red vs. Dead []
1987 []
Crimi Clowns: De Movie []

349
Grand Central []
Fallen City []
Across the River []
Chrysalis []
An Apology to Elephants []
Second Coming []
Cargo []
L'autre vie de Richard Kemp []
White God []
War Story []
La fille du 14 juillet []
Der Bunker []
Nightmare Code []
Pitch Perfect 2 []
Grigris []
A Touch of Sin []
The Missing Picture []
Omar []
Norte, the End of History []
9-Month Stretch []
A Fighting Man []
Stop the Pounding Heart []
Madras Cafe []
The Auction []
Wolf at the Door []
Coherence []
Paraèso []
Tiger Orange []
Amy []
As Above, So Below []
Wish I Was Here []
Life Partners []
Magic in the Moonlight []
2 Autumns, 3 Winters []
Nightcrawler []
Lucy []
Shaun the Sheep Movie []
Bad Turn Worse []
My Sweet Pepper Land []
Buen Dèa, Ramèn []
Soodhu Kavvum []
William Shatner Presents: Chaos on the Bridge []
Ugly []
The Wonders []
Passione sinistra []
Sarah Silverman: We Are Miracles []
The Blood Lands []
Black or White []

350
Cash Only []
Chef []
Macbeth []
I Origins []
The Spoils of Babylon []
Enklava []
The Saratov Approach []
Patrick's Day []
La mossa del pinguino []
Farewell Baghdad []
Hippocrates: Diary of a French Doctor []
99 Homes []
Manglehorn []
A Horse for Summer []
Turks & Caicos []
Mary Loss of Soul []
Thou Gild'st the Even []
Bang Bang []
My Little Pony: Equestria Girls []
Insurgent []
Gregory Go Boom []
Wolf Totem []
A Nightingale Falling []
The Signal []
Obvious Child []
John Wick []
Manuscripts Don't Burn []
The Young Kieslowski []
Bethlehem []
Double Play: James Benning and Richard Linklater []
Over Your Dead Body []
Miss and the Doctors []
The Dead 2: India []
The Other One []
Dual []
20,000 Days on Earth []
God's Pocket []
Blood of My Blood []
Nice and Easy []
Thou Gild'st the Even []
My So-Called Father []
The Gambler []
The Lady in Number 6: Music Saved My Life []
The 2013 Rock and Roll Hall of Fame Induction Ceremony []
Margarita, with a Straw []
In the Name of My Daughter []
Siddharth []
Intimate Parts []

351
Hard Sun []
Motylki []
Far from the Madding Crowd []
The Connection []
Far from Men []
Earth's Golden Playground []
Common []
A Most Violent Year []
All This Mayhem []
Klumpfisken []
Our Sunhi []
JFK: The Smoking Gun []
Bros Before Hos []
Corazèn de leèn []
Room 8 []
The Living []
The Pool []
Death Comes to Pemberley []
Kung Fu Killer []
Che strano chiamarsi Federico []
Happy Christmas []
Spanish Affair []
Once My Mother []
The White Storm []
What a Fuck Am I Doing on This Battlefield []
Love Steaks []
The Galapagos Affair: Satan Came to Eden []
Rocks in My Pockets []
The Anomaly []
The Road Within []
The Hunters []
Grace []
Wood Job! []
Finding Christmas []
Comet []
Raspberry Boat Refugee []
Under the Electric Sky []
The Face of an Angel []
Hot Pursuit []
Secretly, Greatly []
They Have Escaped []
Montage []
Cold Eyes []
The Foxy Merkins []
A Fuller Life []
Hwayi: A Monster Boy []
Kundo: Age of the Rampant []
The Purge: Anarchy []

352
Joanna []
The Nightingale []
Violette []
Apartment Troubles []
Alex of Venice []
Chocolate Strawberry Vanilla []
21 Days []
Back Issues: The Hustler Magazine Story []
Bombay Velvet []
The Girl in the Book []
The Guest []
The Theory of Everything []
Twinsters []
The Hundred-Foot Journey []
Planes: Fire & Rescue []
Get a Horse! []
Patema Inverted []
Boa Sorte []
9-Man []
Suck Me Shakespeer []
Shuddh Desi Romance []
The Terror Live []
L'arte della felicitè []
Beneath []
The Stalker []
Spaghetti Story []
Yosemite []
Young Detective Dee: Rise of the Sea Dragon []
Halfway []
Eyes of a Thief []
Camp X-Ray []
Window Wonderland []
The Summer of Sangaile []
Homeland []
John Apple Jack []
De nieuwe wildernis []
Cha cha cha []
No Stranger Than Love []
Super Buddies []
Outliving Emily []
Noah []
Mary Kom []
Kènig von Deutschland []
Unbeatable []
Traitors []
Amour fou []
Pete's Christmas []
The 11th Hour []

353
Very Ordinary Couple []
The Color of Rain []
Cantinflas []
Boy Meets Girl []
The Water Diviner []
The Face Reader []
Mike Tyson: Undisputed Truth []
The Goob []
The Portal []
Stromberg - Der Film []
Adama []
Wild Tales []
Olive Kitteridge []
Sur le chemin de l'ècole []
Babysitting []
Mia Madre []
Happy Ending []
The Flying Man []
Titli []
Not My Day []
Faults []
The Honourable Woman []
The Little Queen []
Blue Exorcist: The Movie []
Por un puèado de besos []
Rurèni Kenshin: Densetsu no saigo-hen []
My Class []
Inbetween Worlds []
The Rule of Accident []
Echoes []
Meu Passado Me Condena: O Filme []
The Guide []
The Crossing []
WhoAmI []
Nightingale []
Atharintiki Daaredi []
Mr Hublot []
The Wonders []
Getèlio []
Li'l Quinquin []
SuperBob []
Un ragazzo d'oro []
Of Mind and Music []
Documented []
Cru []
No One's Child []
#chicagoGirl: The Social Network Takes on a Dictator []
Before I Disappear []

354
The New Black []
Cub []
Manos sucias []
Break Point []
Gett: The Trial of Viviane Amsalem []
Learning to Drive []
If I Had Wings []
Jackass Presents: Bad Grandpa []
The Beat Beneath My Feet []
Isabelle Dances Into the Spotlight []
Sole a catinelle []
Marvel One-Shot: Agent Carter []
The Forbidden Room []
Grace []
Our Curse []
The Phone Call []
Christmas in Conway []
Bad Hair []
Supermensch: The Legend of Shep Gordon []
Of Horses and Men []
L'intrepido []
Flowers in the Attic []
Appropriate Behaviour []
Miss Violence []
Zoran, il mio nipote scemo []
The Invisible Boy []
We'll Never Have Paris []
Spy []
Crocodile Gennadiy []
Kelly & Cal []
The Pretor []
Goodnight Mommy []
Rosemary's Baby []
Say 'I Love You' []
Los Flamencos []
My Last Year with the Nuns []
Magical Girl []
Tim's Vermeer []
The Treatment []
Sorrow and Joy []
Dinosaur 13 []
Eden []
Advantageous []
The Identity Theft of Mitch Mustain []
People in Places []
Burt's Buzz []
The Fake []
At Berkeley []

355
Life Feels Good []
Memphis []
Cymbeline []
Listen Up Philip []
Monk with a Camera []
Diet of Sex []
Bakit hindi ka crush ng crush mo? []
The Snow White Murder Case []
The Inbetweeners 2 []
Summertime []
Sous les jupes des filles []
How to Build a Better Boy []
Tusk []
52 Tuesdays []
House of Manson []
Ghoul []
Bèrning []
Story of My Death []
When Evening Falls on Bucharest or Metabolism []
The Masked Saint []
Manakamana []
Coast of Death []
Love Is the Perfect Crime []
The Silly Ones and the Stupid Ones []
WNUF Halloween Special []
Paris Follies []
Garden Lovers []
See No Evil 2 []
Gabrielle []
Watermark []
Believe Me []
Foreign Bodies []
The World of Kanako []
Misconception []
Jimmy's Hall []
Luton []
All Stars []
10.000 Km []
The Heart Machine []
Circle []
Club Sandwich []
Lizzie Borden Took an Ax []
Stray Dogs []
Take Care []
'Til Madness Do Us Part []
Oktober November []
Rags & Tatters []
Nasty Baby []

356
Overheard 3 []
Redemption []
Little Accidents []
Beyond the Lights []
Pasolini []
Coming Home []
Freistatt []
Der Banker: Master of the Universe []
Sucker []
Phantom Halo []
She's Lost Control []
Catch a Christmas Star []
Marie's Story []
Misery Loves Comedy []
Houdini []
Tim Maia []
Jimmy Vestvood: Amerikan Hero []
Son of Batman []
Batman: Assault on Arkham []
Black Mountain Side []
Amira & Sam []
The Absent One []
Hacker's Game []
Der Nachtmahr []
The Sound of Music Live! []
All About the Feathers []
Our Man in Tehran []
Heropanti []
Finding Fanny []
A Small September Affair []
The Journey []
Prison Terminal: The Last Days of Private Jack Hall []
Belle and Sebastian []
Wavemakers []
Desierto []
Let Us Prey []
The Referee []
Thunder and the House of Magic []
The Circle []
A Brilliant Young Mind []
Never Tear Us Apart: The Untold Story of INXS []
Leopardi []
Listening []
Wish []
The Geographer Drank His Globe Away []
Partisan []
Here Be Dragons []
Honeytrap []

357
Hello, My Name Is Frank []
The Farewell Party []
Ballet 422 []
The Condemned []
Ciudad Delirio []
Justin Bieber's Believe []
The Benefactor []
Sleeping with Other People []
Mr. Holmes []
The Greggs []
Pride []
Fool Circle []
Room []
Theeb []
Hartenstraat []
Sacro GRA []
The Diary of a Teenage Girl []
Sotto una buona stella []
The Villain []
Bei tou zou de na wu nian []
Consequences []
Dukhtar []
Be My Cat: A Film for Anne []
Honeymoon []
Giovanni's Island []
Feuten: Het Feestje []
10 Minutes []
Sonyeo []
The Boy Next Door []
Factory Girl []
The Boy and the World []
Asier ETA biok []
The New Girlfriend []
The Wolf and the Lamb []
Hellion []
Class Enemy []
Gorko! []
Sleepless in New York []
Insidious: Chapter 3 []
Free Range/Ballad on Approving of the World []
Breakfast with Jonny Wilkinson []
The Great Martian War 1913 - 1917 []
The Return to Homs []
If You Don't, I Will []
Relationship Status: It's Complicated []
Symphony No. 42 []
My Prairie Home []
The Kingdom of Dreams and Madness []

358
Slow West []
Boats []
Neko no shukai []
Son of God []
A cambio de nada []
Actress []
Beltracchi: The Art of Forgery []
Two Raging Grannies []
A LEGO Brickumentary []
Alphabet []
Dreamcatcher []
The Nostalgist []
The Last Man on the Moon []
A Brony Tale []
Uncle John []
The Master Plan []
Yalom's Cure []
Super Duper Alice Cooper []
The Blue Room []
Still the Water []
Island of Lemurs: Madagascar []
Spare Parts []
Becoming Bulletproof []
It Follows []
I'll See You in My Dreams []
Apocalyptic []
Tutta colpa di Freud []
The 10 Year Plan []
Sword Art Online Extra Edition []
The Redwood Massacre []
SlingShot []
Violent []
Charlie's Country []
Trailer Park Boys: Don't Legalize It []
A Estrada 47 []
The Boxcar Children []
The Empty Hours []
Above and Below []
Emergency Exit: Young Italians Abroad []
Little England []
Marshland []
Hotori no sakuko []
Red Family []
The Owners []
Fish & Cat []
Zurich []
Stratos []
The Wrath of Vajra []

359
Saphirblau []
Stray Dog []
Ivory Tower []
The Seventh Fire []
Kumiko, the Treasure Hunter []
Concerning Violence []
The Case Against 8 []
The Overnighters []
Bloody Knuckles []
Red Army []
Pulp: a Film About Life, Death & Supermarkets []
Seventh Code []
Han Gong-ju []
Blowfly Park []
The Immortalists []
The Sixties []
The Internet's Own Boy: The Story of Aaron Swartz []
Jackie & Ryan []
The Mend []
Ambassada []
Hin und weg []
Manson Family Vacation []
Creative Control []
Tale of Tales []
Suburban Gothic []
The Saboteurs []
Land Ho! []
Arabian Nights: Volume 1 - The Restless One []
Leave The World Behind []
Two Step []
The Great Alone []
Once in a Lifetime []
Equals []
Samurai Hustle []
Uzumasa Limelight []
Just Jim []
Wind []
The Falling []
Rams []
Good Kill []
Animals []
Eila, Rampe ja Likka []
The Midwife []
The Babushkas of Chernobyl []
Paternity Leave []
Stung []
One Last Hug: Three Days at Grief Camp []
Boychoir []

360
The Mystery of Happiness []
Haemoo []
A Second Chance []
Bayonetta: Bloody Fate []
As We Were Dreaming []
Supervention []
The Reunion 2: The Funeral []
Vessel []
Castles in the Sky []
The Confines []
Youth []
Deep Web []
Women Who Flirt []
Mala Mala []
Beyond Beauty: Taiwan from Above []
Still Alice []
The Trip to Bountiful []
Boys []
She's Beautiful When She's Angry []
Yasmine []
Torrente 5 []
Queen []
Annabelle []
Tommy Cooper: Not Like That, Like This []
Next Time I'll Aim for the Heart []
Un altro mondo []
Whitey: United States of America v. James J. Bulger []
Paper Planes []
Eu Nèo Faèo a Menor Ideia do Que Eu Tè Fazendo Com a Minha Vida []
Imperial Dreams []
Middle of the Road []
Stand by Me Doraemon []
This Isn't Funny []
About a Girl []
Stille hjerte []
Maya the Bee Movie []
Maicol Jecson []
Burying the Ex []
Firestorm []
Twelve Trees of Christmas []
Killa []
Blue Sky Bones []
Entertainment []
Hungry Hearts []
DamNation []
Parasyte: Part 1 []
1001 Grams []
Stereo []

361
Coda []
Stealing Cars []
As the Gods Will []
Adios Carmen []
Deliverance Creek []
We Come as Friends []
Breathe []
Awaken []
Guidance []
Wild in Blue []
The Mafia Only Kills in Summer []
Purgatorio []
The Gunfighter []
Polycarp []
Mary Is Happy, Mary Is Happy []
Redeemer []
700 Sundays []
Naz & Maalik []
Six by Sondheim []
The Gabby Douglas Story []
The Taking of Deborah Logan []
Haider []
Short Peace []
The Legend of Longwood []
Miss India America []
Evaporating Borders []
Sicario []
Daawat-e-Ishq []
When Marnie Was There []
Young Tiger []
No No: A Dockumentary []
Samba []
The Dead Lands []
The Roosevelts: An Intimate History []
Atlèntida []
The Lion's Mouth Opens []
Tajja: sineui son []
Ciencias naturales []
The Attorney []
The Suspect []
Nachthelle []
Mythica: A Quest for Heroes []
Glassland []
The Man from Oran []
Timbuktu []
De Surprise []
As the Light Goes Out []
The End of the Tour []

362
What We Do in the Shadows []
Drishyam []
Shrew's Nest []
The Divine Move []
Gooische Vrouwen II []
Ice Poison []
Bad Fucking []
April and the Extraordinary World []
Fasten Your Seatbelts []
Song 'e Napule []
An Afternoon []
The Lost Honour of Christopher Jefferies []
Schneider vs. Bax []
Daughters of Dolma []
Number One Fan []
The Swedish Moment []
Junior []
I Can Quit Whenever I Want []
Cake []
Prospect []
Tinker Ticker []
Mès negro que la noche []
Paul Blart: Mall Cop 2 []
The Sea of Trees []
Francofonia []
Extraordinary Tales []
Night Will Fall []
E-Team []
Closer to God []
Fort Tilden []
Hèter meines Bruders []
Happiness []
Escape []
The Notorious Mr. Bout []
To Kill a Man []
To Singapore, with Love []
Finders Keepers []
Hallè hallè []
La buca []
Patterns of Evidence: The Exodus []
The Lobster []
The White Haired Witch of Lunar Kingdom []
Stations of the Cross []
JLA Adventures: Trapped in Time []
American Hostage []
Rise of the Legend []
Blind Massage []
Black Coal, Thin Ice []

363
Jack []
Macondo []
Blank: A Vinylmation Love Story []
Kung Fury []
Toy Story That Time Forgot []
The Distance []
Casa Grande []
Torneranno i prati []
1971 []
Mon roi []
Who the F**K Is Arthur Fogel []
The Fatal Encounter []
Vie sauvage []
Return to Ithaca []
Friends and Romans []
Avengers Confidential: Black Widow & Punisher []
La sedia della felicitè []
The Fear of Darkness []
Tillbaka till Bromma []
Mediterranea []
7 Chinese Brothers []
Honig im Kopf []
Pas son genre []
Pixadores []
Kombinat 'Nadezhda' []
I Am Syd Stone []
Mardaani []
For Some Inexplicable Reason []
Petals on the Wind []
Take Me to the River []
The Teacher's Diary []
Embers []
The Kidnapping of Michel Houellebecq []
The Midnight After []
Steve McQueen: The Man & Le Mans []
Time Out of Mind []
La cueva []
Der Anstèndige []
The Assassin []
Another Year []
54 Days []
Holiday []
Misunderstood []
That Demon Within []
The Possibilities Are Endless []
Snow on the Blades []
Miss Granny []
Best of Enemies []

364
Harmontown []
Melbourne []
Drumline: A New Beat []
The Look of Silence []
The Good Sister []
Saihate nite []
Headfirst []
Chevalier []
The Incident []
Como funcionan casi todas las cosas []
Blood Moon []
My Little Pony: Equestria Girls - Rainbow Rocks []
Meadowland []
Bhoothnath Returns []
The D Train []
Finders Keepers []
Messi []
Dior and I []
Wolf Warrior []
Sunny in the Dark []
A Year in Champagne []
45 Years []
Zapped []
The Grief of Others []
The Bèlier Family []
Nas: Time Is Illmatic []
èkte vare []
Slums: Cities of Tomorrow []
Perez. []
Khoobsurat []
Broken []
Wolf Hall []
Print the Legend []
Chasuke's Journey []
Pale Moon []
Durak []
The Dinner []
Welcome to Happiness []
A Histèria Da Eternidade []
Songs My Brothers Taught Me []
The Great Invisible []
The Midnight Swim []
Jigarthanda []
Point and Shoot []
Regarding Susan Sontag []
A Perfect Day []
Korengal []
Strana Oz []

365
Sweet Alibis []
Tashi and the Monk []
Only the Dead []
Unga Sophie Bell []
Limited Partnership []
La cèrèmonie []
Liebe mich! []
Night Owls []
Belye nochi pochtalona Alekseya Tryapitsyna []
Life May Be []
The Last Season []
Eager []
Northpole []
Conducta []
Out of Nature []
Wondrous Boccaccio []
Just Eat It: A Food Waste Story []
Girl on the Edge []
24 Days []
Lights Out []
Antboy: Revenge of the Red Fury []
Nena []
The Sheik []
Killing Jesus []
A Sunday Kind of Love []
El vals de los inètiles []
Mommy []
Ankhon Dekhi []
Creature []
One-Minute Time Machine []
Rolling Papers []
Death in Buenos Aires []
Animation Runner Kuromi 2 []
Paper Towns []
Noi 4 []
Summer of Blood []
Mutant World []
Mr. Dynamite: The Rise of James Brown []
Negociador []
Nowitzki: The Perfect Shot []
Bjèrk: Biophilia Live []
Wishin' and Hopin' []
Remember Me? []
Force Majeure []
Hole []
Wet Bum []
Don't Hug Me I'm Scared 2: Time []
Soul Boys of the Western World []

366
Jinxy Jenkins, Lucky Lou []
Appleseed Alpha []
Wir tun es fèr Geld []
I Smile Back []
The Newburgh Sting []
Absent Minded []
Let's Sin []
Sworn Virgin []
The Photographer []
The Snake Brothers []
Divine Access []
Art and Craft []
21 Years: Richard Linklater []
Modris []
Songs She Wrote About People She Knows []
Marvellous []
Party Girl []
Giuseppe Makes a Movie []
A Girl at My Door []
Armi elèè! []
H. []
Erebus: Into the Unknown []
Learning to Ride []
Free Fall []
Holding the Man []
Hardkor Disko []
Dragon Blade []
The Salt of the Earth []
Lovemilla []
Len and Company []
Merchants of Doubt []
Maidan []
Silvered Water, Syria Self-Portrait []
You're Ugly Too []
Last Cab to Darwin []
Fugly []
Felix and Meira []
Alias Marèa []
600 Millas []
Heaven Knows What []
Feast []
Miss Hokusai []
Sarajevo []
The Other One: The Long, Strange Trip of Bob Weir []
One on One []
Gangnam Blues []
Coming Soon []
Dude Bro Party Massacre III []

367
All About My Parents []
It's Already Tomorrow in Hong Kong []
Of Men and War []
Remember []
Bessie []
Deathgasm []
An Italian Name []
The Kindergarten Teacher []
I Am Michael []
Unfriended []
A Dangerous Game []
The Wait []
Court []
Refugiado []
Over the Garden Wall []
Autism in Love []
The Great Hypnotist []
3 AM: A Paranormal Experience []
Das Ende der Geduld []
The Disappearance of Eleanor Rigby: Her []
Requisitos para ser una persona normal []
One Christmas Eve []
Die Fischerin []
Last Chance []
Ava's Possessions []
The Disappearance of Eleanor Rigby: Them []
Sailing to Paradise []
Hill of Freedom []
Body []
A Brave Heart: The Lizzie Velasquez Story []
Latin Lover []
Tetarti 04:45 []
Mountains May Depart []
The Second Mother []
Bogowie []
Sherpa []
Hitchcock/Truffaut []
Flocken []
Wire Cutters []
Whitney []
Self Made []
Elephant Song []
Our Little Sister []
Asterix and Obelix: Mansion of the Gods []
Summer Nights []
Warsaw '44 []
Hello, My Name Is Doris []
Iron Ivan []

368
Love []
Ashby []
Afterlife []
Sindrom Petrushki []
Cherry Tobacco []
Wir sind die Neuen []
Sleeping Giant []
War Pigs []
I'm the One You Want []
Cèdigo Paz []
Valley Uprising []
Paulina []
Corner Gas: The Movie []
The Swimmers []
The Brand New Testament []
The Escort []
Roar []
Chronicle of a Blood Merchant []
Brand: A Second Coming []
6 Years []
Drone []
Halo: Nightfall []
Son of Saul []
Noi e la Giulia []
Ode to My Father []
Cop Car []
Bloed, Zweet & Tranen []
A Blast []
The Unauthorized Saved by the Bell Story []
The Girl Who Talked to Dolphins []
Naked Among Wolves []
Monster High: Freaky Fusion []
Lava []
Results []
Tangerine []
Labyrinth of Lies []
Scusate se esisto! []
The Tree []
A War []
The Visit []
Ratter []
Thread of Lies []
Bang Gang (A Modern Love Story) []
Felices 140 []
The Overnight []
Dope []
Chronic []
Homies []

369
Assassination Classroom []
Clean Hands []
A Fool []
Mune, le gardien de la lune []
The Bronze []
Ogni maledetto Natale []
Tiny Times 3.0 []
King Jack []
My Lonely Me []
11 Minutes []
The Missing []
Men & Chicken []
Tokyo Fiancèe []
Kept Woman []
Batkid Begins []
Chuang ru zhe []
Sonyeogoedam []
Fires on the Plain []
That Sugar Film []
The State-Mafia Pact []
Christmas, Again []
Black Souls []
The Continent []
Gayby Baby []
Those People []
Call Me Lucky []
Loreak []
The Birth of Sakè []
Tales of the Grim Sleeper []
The Princess of France []
August Winds []
Songs from the North []
Salad Days []
But Always []
Horse Money []
The Iron Ministry []
Remake, Remix, Rip-Off: About Copy Culture & Turkish Pop Cinema []
Si accettano miracoli []
Sei mai stata sulla luna? []
From Caligari to Hitler: German Cinema in the Age of the Masses []
Lamb []
With This Ring []
Iron Man and Captain America: Heroes United []
Hector []
Pokèmon the Movie: Diancie and the Cocoon of Destruction []
Bill Maher: Live from D.C. []
Scooby-Doo! Frankencreepy []
Butterfly []

370
The Price We Pay []
Out of My Hand []
The Daughter []
OzLand []
Zvezda []
Corbo []
The Taking of Tiger Mountain []
Scherzo Diabolico []
A Country Called Home []
My Old Classmate []
Confession []
Along Came a Nanny []
In the Basement []
Welcome to Leith []
We Can't Live Without Cosmos []
Mustang []
The President []
From Caligari to Hitler: German Cinema in the Age of the Masses []
The Perfect Dictatorship []
Peter Pan Live! []
Kaakkaa Muttai []
Cafè. Waiting. Love []
One and Two []
Jackrabbit []
Fourth Man Out []
Aanmodderfakker []
Capital C []
III []
Queen of Earth []
What's Between Us []
Do I Sound Gay? []
Foreign Body []
Looking for Grace []
Tom and Jerry: The Lost Dragon []
Terror at the Mall []
Hockney []
I Am Ali []
Shut In []
Saving Christmas []
Xiu chun dao []
The Royal Tailor []
Home Care []
Underdog []
Radiator []
Bag Man []
The Man in the Wall []
Whistle Blower []
Cosmos []

371
Gold Coast []
Citizenfour []
Fiddlesticks []
Encounters []
My Golden Days []
The Chinese Mayor []
India's Daughter []
Green Room []
My Love, Don't Cross That River []
Andiamo a quel paese []
Best Christmas Party Ever []
Killswitch []
Pervert Park []
Dark Star: H.R. Giger's World []
Cemetery of Splendour []
Somewhere Only We Know []
We Are Young. We Are Strong. []
Life Is Sacred []
Being Evel []
Peace Officer []
Dheepan []
The Russian Woodpecker []
Bitva za Sevastopol []
Disorder []
Frankenstein []
Dhanak []
Packed In A Trunk: The Lost Art of Edith Lake Wilkinson []
My Skinny Sister []
Beyond the Fear []
In the Grayscale []
Dream Driven []
People Places Things []
War []
They Look Like People []
Miedzy nami dobrze jest []
Whisper If I Forget []
Those Who Feel the Fire Burning []
Solnechnyy udar []
1989 []
Valley of Love []
Day One []
For Grace []
Cartel Land []
3 1/2 Minutes, Ten Bullets []
Ambition []
Lucifer []
Test []
Tired Moonlight []

372
The Seven Five []
Ixcanul Volcano []
Magician: The Astonishing Life and Work of Orson Welles []
Dark Horse []
Italiano medio []
How to Change the World []
Listen to Me Marlon []
Unexpected []
Crush the Skull []
The Here After []
Iris []
Olmo & the Seagull []
Prince []
Angels of Revolution []
Homme Less []
That Thing Called Tadhana []
World of Tomorrow []
Journey to the Shore []
Two Friends []
Bridgend []
The Hunting Ground []
The Ecstasy of Wilko Johnson []
Thank You for Playing []
Limonata []
Socialphobia []
Elizabeth Ekadashi []
Boj za []
Western []
The Shaman []
Courted []
Frau Mèller muss weg! []
Top Spin []
TransFatty Lives []
Black Mountain Poets []
Victoria []
Uncle Kent 2 []
Les cowboys []
Zid []
Cobain: Montage of Heck []
Tanna []
Forever []
Tyke Elephant Outlaw []
In Transit []
The Witch []
Krisha []
Most Likely to Succeed []
Applesauce []
Caught []

373
The Boy and the Beast []
Breaking a Monster []
Under Electric Clouds []
Embrace of the Serpent []
White Out, Black In []
James White []
B-Movie: Lust & Sound in West-Berlin 1979-1989 []
Evolution []
Genetic Me []
An []
The Jinx: The Life and Deaths of Robert Durst []
Insanity []
Ivy []
Ch/B []
The Black Panthers: Vanguard of the Revolution []
It's Me, Hilary: The Man Who Drew Eloise []
Larry Kramer in Love and Anger []
Carte Blanche []
The Mysterious Death of Pèrola []
Frame by Frame []
The Break-In []
Live from New York! []
Body []
Taxi []
Crumbs []
Petting Zoo []
Louis C.K.: Live at the Comedy Store []
How to Win at Checkers (Every Time) []
(T)ERROR []
Aferim! []
The Club []
The Pearl Button []
Hot Girls Wanted []
Pionery-geroi []
Adam Curtis: Bitter Lake []
Everything Before Us []
The Clan []
Homeland (Iraq Year Zero) []
Port of Call []
Ave Maria []
The Wakhan Front []
Marguerite & Julien []
Marguerite []
The Measure of a Man []
Dègradè []
Song of Lahore []
The Corpse of Anna Fritz []
Ayanda and the Mechanic []

374
Ice and the Sky []
Tikkun []
Tom Swift and His Electric Rifle []
Emelie []
Thought Crimes: The Case of the Cannibal Cop []
The Treasure []
Hallway []
The Blue Hour []
Viaje []
Les oiseaux de passage []
Jeruzalem []
Un monstruo de mil cabezas []
Ho ucciso Napoleone []
Techo y comida []
The High Sun []
Dennis Rodman's Big Bang in PyongYang []
Men Go to Battle []
The Other Side []
Kaili Blues []
One Floor Below []
Ingrid Bergman in Her Own Words []
Fly Away Solo []
Nahid []
Manoman []
Se Dio vuole []
Monkey King: Hero Is Back []
Coin Locker Girl []
Bitcoin: The End of Money as We Know It []
Land and Shade []
A Sinner in Mecca []
Very Semi-Serious []
Office []
Much Loved []
The Magic Mountain []
Alice in Earnestland []
Heil []
Desde allè []
Babai []
Paren s nashego kladbishcha []
Tryapichnyy soyuz []
Right Now, Wrong Then []
The Laundryman []
The Red Spider []
Our Loved Ones []
No Home Movie []
Scenes of a Sexual Nature []

375
7.9 B). Text Search on Multiple Fields
7.9.1 Purpose:
MongoDB’s text search functionality allows searching for movies that contain a specific term in
any of the indexed fields.

7.9.2 Example:
If a text index is set up, you can perform a text search to find movies matching a given keyword
across multiple fields, such as title and plot.
[ ]: # Searching for movies with 'Matrix' in any indexed text field
results = db.movies.find({"$text": {"$search": "Matrix"}})
for result in results:
print(result["title"])

The Matrix
The Matrix Reloaded
The Matrix Revolutions
Commando
The Animatrix
Looker

[ ]: import pymongo
import pandas as pd

collection = db.movies

# Fetch relevant fields


movies = list(collection.find({}, {"_id": 0, "title": 1, "year": 1, "runtime":␣
↪1, "metacritic": 1, "imdb.rating": 1, "genres": 1}))

# Convert to DataFrame
df = pd.DataFrame(movies)
df

[ ]: genres runtime \
0 [Short, Western] 11.0
1 [Short, Drama] 14.0
2 [Animation, Short, Comedy] 7.0
3 [Crime, Drama] 88.0
4 [Animation, Short, Comedy] 12.0
… … …
21344 [Comedy] 110.0
21345 [Thriller] 90.0
21346 [Drama] 102.0
21347 [Documentary] 115.0
21348 [Comedy, Drama, Romance] 91.0

376
title year \
0 The Great Train Robbery 1903
1 A Corner in Wheat 1909
2 Winsor McCay, the Famous Cartoonist of the N.Y… 1911
3 Traffic in Souls 1913
4 Gertie the Dinosaur 1914
… … …
21344 The Laundryman 2015
21345 The Red Spider 2015
21346 Our Loved Ones 2015
21347 No Home Movie 2015
21348 Scenes of a Sexual Nature 2006

imdb metacritic
0 {'rating': 7.4} NaN
1 {'rating': 6.6} NaN
2 {'rating': 7.3} NaN
3 {'rating': 6.0} NaN
4 {'rating': 7.3} NaN
… … …
21344 {'rating': 6.3} NaN
21345 {'rating': 7.4} NaN
21346 {'rating': 7.4} NaN
21347 {'rating': 3.8} NaN
21348 {'rating': 6.1} NaN

[21349 rows x 6 columns]

[ ]: # Extract IMDb rating


df["imdb_rating"] = df["imdb"].apply(lambda x: x.get("rating") if isinstance(x,␣
↪dict) else None)

# Drop 'imdb' column (since we extracted the rating)


df.drop(columns=["imdb"], inplace=True)

# Fill missing Metacritic values with median


df["metacritic"].fillna(df["metacritic"].median(), inplace=True)

# Drop remaining NaN values


df.dropna(inplace=True)

print(df.head()) # Preview cleaned data

genres runtime \
0 [Short, Western] 11.0
1 [Short, Drama] 14.0

377
2 [Animation, Short, Comedy] 7.0
3 [Crime, Drama] 88.0
4 [Animation, Short, Comedy] 12.0

title year metacritic \


0 The Great Train Robbery 1903 60.0
1 A Corner in Wheat 1909 60.0
2 Winsor McCay, the Famous Cartoonist of the N.Y… 1911 60.0
3 Traffic in Souls 1913 60.0
4 Gertie the Dinosaur 1914 60.0

imdb_rating
0 7.4
1 6.6
2 7.3
3 6.0
4 7.3
<ipython-input-697-1afcc0f3bab2>:8: FutureWarning: A value is trying to be set
on a copy of a DataFrame or Series through chained assignment using an inplace
method.
The behavior will change in pandas 3.0. This inplace method will never work
because the intermediate object on which we are setting values always behaves as
a copy.

For example, when doing 'df[col].method(value, inplace=True)', try using


'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value)
instead, to perform the operation inplace on the original object.

df["metacritic"].fillna(df["metacritic"].median(), inplace=True)

[ ]: from sklearn.preprocessing import MultiLabelBinarizer

# One-hot encode genres


mlb = MultiLabelBinarizer()
genres_encoded = pd.DataFrame(mlb.fit_transform(df["genres"]), columns=mlb.
↪classes_)

# Merge encoded genres with the dataframe


df = df.drop(columns=["genres"]).reset_index(drop=True)
df = pd.concat([df, genres_encoded], axis=1)
df # Check transformed dataset

runtime title year \


0 11.0 The Great Train Robbery 1903
1 14.0 A Corner in Wheat 1909
2 7.0 Winsor McCay, the Famous Cartoonist of the N.Y… 1911

378
3 88.0 Traffic in Souls 1913
4 12.0 Gertie the Dinosaur 1914

metacritic imdb_rating Action Adventure Animation Biography Comedy \


0 60.0 7.4 0 0 0 0 0
1 60.0 6.6 0 0 0 0 0
2 60.0 7.3 0 0 1 0 1
3 60.0 6.0 0 0 0 0 0
4 60.0 7.3 0 0 1 0 1

… Mystery News Romance Sci-Fi Short Sport Talk-Show Thriller \


0 … 0 0 0 0 1 0 0 0
1 … 0 0 0 0 1 0 0 0
2 … 0 0 0 0 1 0 0 0
3 … 0 0 0 0 0 0 0 0
4 … 0 0 0 0 1 0 0 0

War Western
0 0 1
1 0 0
2 0 0
3 0 0
4 0 0

[5 rows x 30 columns]

379

You might also like