CS109 Final Project: Take One

<img src="dogfail.jpg", width="500px">

The following notebook contains our original attempt to predict box office gross incomes using text sentiment analysis. It represents a large portion of our work and many hours of gathering, cleaning, and doing preliminary analysis on data, which is why we felt it necessary to include here. This notebook contains our original line of thought and shows data science process. We consider it a fail not in the sense that we were doing poor statistics, but in the sense that the data we obtained was not fit for the task at hand. Our preliminary analysis helped to illuminate this. We ultimately decided that we needed more data, and have included the process for obtaining and analysis this better data in another notebook, Final_Project_vFINAL. Please see that notebook after this one.

Background & Motivation

Social media and entertainment are such pervasive parts of millennials' lives. We want to study the intersection of these two. Is it possible to predict box office success of film through sentiments expressed on social media? Stay tuned for more!


In [1]:
%matplotlib inline
import numpy as np
import scipy as sp
import matplotlib as mpl
import matplotlib.cm as cm
import matplotlib.pyplot as plt
import pandas as pd
import time
import json
import statsmodels.api as sm
from statsmodels.formula.api import logit, glm, ols
pd.set_option('display.width', 500)
pd.set_option('display.max_columns', 100)
pd.set_option('display.notebook_repr_html', True)
import seaborn as sns
sns.set_style("whitegrid")
sns.set_context("poster")
import math
from sklearn.svm import LinearSVC

Scrape Box Office Mojo and Prepare IMDB Data

For our project we will be using data from 3 different sources

    Box Office Mojo (BOM) (http://www.boxofficemojo.com) is a website that aggregates, in a table, a list of all movies released in a year and attributes such as how much it grossed in the opening week, how much it grossed in total and how long it aired for
    Large Movie Review Dataset (http://ai.stanford.edu/~amaas/data/sentiment/) is a polarized dataset of movie reviews from IMDB prepared by Maas et al from Stanford. The dataset contains 25,000 entries in the training set and 25,000 entries in the test set.
    AFINN-111 Dictionary (http://www2.imm.dtu.dk/pubdb/views/publication_details.php?id=60100) is a dictionary list of 2477 english words and phrases rated for valence with an integer from -5 to 5. Originally prepared by Finn Årup Nielsen

In this first milestone, we will get all the data into a format that we can start running analysis on!

Scraping and Loading Our Data

Scraping Box Office Mojo

First we import the requests and BeautifulSoup libraries to make working with HTTP requests easier, and then easily transfer HTML content to Python data structures.


In [2]:
from bs4 import BeautifulSoup
# The "requests" library makes working with HTTP requests easier
# than the built-in urllib libraries.
import requests

Secondly, we prepare the data frame movie_df to store the data that we will scrape from BOM. We give this dataframe 9 columns:

* ranking: the ranking of the movie in its release year by gross
* title: movie title
* gross: how much the movie grossed while in theatres
* Total_theaters: the total number of theaters that showed this movie
* opening_gross: how much the movie grossed in the opening weekend (Fri-Sun)
* opening_theaters: the total number of theaters that showed this movie in the opening weekend (Fri-Sun)
* open_date: date of opening
* close_date: date of closing
* year: year of release

In [3]:
bom_df = pd.DataFrame(columns=['close_date', 'gross', 'open_date', 'opening_gross', 'opening_theaters','ranking','title','total_theaters','year'])

Now we write a function rowInfoGrabber that we will call in a loop over the table on the BOM webpage to grab the attributes and save them into the corresponding columns in movie_df.


In [4]:
def rowInfoGrabber(r):
    info = []
    # Ranking
    info.append(int(r.find("font").get_text()))
    # Title
    info.append(r.find("a").get_text())
    # Gross
    info.append(int(r.find("td", attrs={"align":"right"}).find("b").get_text().strip("$").replace(",","")))
    '''
    For the next 3 categories, we need to deal with the 2000 Anomaly "Fantasia" where there are missing numbers.
    In this case I have chosen to replace the missing values 'N/A' with the values from 'Final Destination', which
    if right above it in the movie table and differs in gross income by about $1 million, which is a small 
    difference. See the picture below for a snapshot of the anomaly in the movie table from 2000.
    '''
    # Total number of theaters
    if r.find_all("td",attrs={"align":"right"})[1].find("font").get_text().replace(",","") == 'N/A':
        info.append(2587)
    else:
        info.append(int(r.find_all("td",attrs={"align":"right"})[1].find("font").get_text().replace(",","")))
    # Opening Gross
    if r.find_all("td", attrs={"align":"right"})[2].find("font").get_text().strip("$").replace(",","") == 'N/A':
        info.append(10015822)
    else: 
        info.append(int(r.find_all("td", attrs={"align":"right"})[2].find("font").get_text().strip("$").replace(",","")))
    # Opening Number of Theaters
    if r.find_all("td", attrs={"align":"right"})[3].find("font").get_text().replace(",","") == 'N/A':
        info.append(2587)
    else:
        info.append(int(r.find_all("td", attrs={"align":"right"})[3].find("font").get_text().replace(",","")))
    # Date of Opening
    info.append(r.find_all("td", attrs={"align":"right"})[4].find("a").get_text())
    # Date of Closing: Before 2002 they didn't have a "closing" date in their tables. We must account for this.
    if (len(r.find_all("td", attrs={"align":"right"})) <= 5):
        info.append('-')
    else:
        info.append(r.find_all("td", attrs={"align":"right"})[5].find("font").get_text())
    return info

<img src="fantasia.png", width="700px">


In [5]:
fields = ["ranking", "title", "gross", "total_theaters", "opening_gross", "opening_theaters", "open_date", "close_date"]

Finally we're ready to scrape!
Because IMDB was created in 1990, we will scrape that far back in BOM. So we're scraping the past 26 years (1990 - 2015). Also note that because the HTML was changed starting in 2001, our scraping will be a little different before and after then.


In [6]:
%%time
years = [1990 + i for i in range(26)]
for year in years:
    pageText = requests.get("http://www.boxofficemojo.com/yearly/chart/?yr=%(yr)d&p=.htm" % {'yr':year})
    soup = BeautifulSoup(pageText.text, "html.parser")
    movieTable = soup.find("td", attrs={"colspan":"3"})
    movieRows = movieTable.find("table").find_all("tr")[2:102]
    movie_dicts = [dict(zip(fields, rowInfoGrabber(row))) for row in movieRows]
    year_df = pd.DataFrame(movie_dicts)
    year_df['year'] = year
    bom_df = bom_df.append(year_df, ignore_index=True)
    time.sleep(1)


CPU times: user 12.9 s, sys: 210 ms, total: 13.1 s
Wall time: 46.4 s

In [43]:
print bom_df.shape
bom_df.head()


(2600, 9)
Out[43]:
close_date gross open_date opening_gross opening_theaters ranking title total_theaters year
0 - 285761243 11/16 17081997 1202 1 Home Alone 2173 1990
1 - 217631306 7/13 12191540 1101 2 Ghost 1766 1990
2 - 184208848 11/9 598257 14 3 Dances with Wolves 1636 1990
3 - 178406268 3/23 11280591 1325 4 Pretty Woman 1811 1990
4 - 135265915 3/30 25398367 2006 5 Teenage Mutant Ninja Turtles 2377 1990

Because some films do not have a close date, we will have to be careful with the close date! Next, we combine the close_date, open_date and year columns into two columns close_date and open_date that are time series. This will make it easier for us to work with the data in the future.


In [44]:
# splitting the close_date and open_date into the respective month and day
bom_df['close_month'] = bom_df['close_date'].map(lambda x: '0' if x=='-' else x[:x.find('/')])
bom_df['close_day'] = bom_df['close_date'].map(lambda x: '0' if x=='-' else x[x.find('/')+1:len(x)])
bom_df['open_month'] = bom_df['open_date'].map(lambda x: x[:x.find('/')])
bom_df['open_day'] = bom_df['open_date'].map(lambda x: x[x.find('/')+1:len(x)])

# dropping the old close_date and open_date
bom_df = bom_df.drop('close_date', 1)
bom_df = bom_df.drop('open_date', 1)

# creating an open_year by turning the year column into a string and getting rid of trailing bits
bom_df['open_year'] = bom_df.year.astype(str)
bom_df['open_year'] = bom_df.open_year.map(lambda x: x[:x.find('.')])

# creating a close_year column, by looking at whether the close month is earlier/later than the open month in the year
close_month = bom_df['close_month'].astype(int)
open_month = bom_df['open_month'].astype(int)
year = bom_df['year'].astype(int)
close_year=[]
for i in range (0, len(year)):
    if close_month[i] >= open_month[i]:
        close_year.append(year[i])
    else:
        close_year.append(year[i]+1) 
bom_df['close_year'] = close_year
bom_df['close_year'] = bom_df['close_year'].astype(str)

In [45]:
# making close_date and open_date by concatenating the year, month and day
import datetime
close_date = []
for index, row in bom_df.iterrows():
    if row.close_day != '0':
        close_date.append(datetime.datetime(int(row.close_year), int(row.close_month), int(row.close_day)))
    else: 
        close_date.append(None)
bom_df['close_date'] = close_date

bom_df['open_date']=bom_df.open_year + '-' + bom_df.open_month + '-' + bom_df.open_day
bom_df['open_date']=bom_df['open_date'].apply(pd.datetools.parse)

Let's take a look at the data, now!


In [46]:
bom_df.head()


Out[46]:
gross opening_gross opening_theaters ranking title total_theaters year close_month close_day open_month open_day open_year close_year close_date open_date
0 285761243 17081997 1202 1 Home Alone 2173 1990 0 0 11 16 1990 1991 None 1990-11-16
1 217631306 12191540 1101 2 Ghost 1766 1990 0 0 7 13 1990 1991 None 1990-07-13
2 184208848 598257 14 3 Dances with Wolves 1636 1990 0 0 11 9 1990 1991 None 1990-11-09
3 178406268 11280591 1325 4 Pretty Woman 1811 1990 0 0 3 23 1990 1991 None 1990-03-23
4 135265915 25398367 2006 5 Teenage Mutant Ninja Turtles 2377 1990 0 0 3 30 1990 1991 None 1990-03-30

Let's take a look at if we can get the run times for each movie!


In [47]:
run_time=[]
for index, row in bom_df.iterrows():
    if row.close_date != None:
        run_time.append(row['close_date']-row['open_date'])
    else: 
        run_time.append('N/A')

Looks like the data is ready for us to use! Let's save this data so we're ready to use it next time.


In [12]:
! pip install pymongo


Requirement already satisfied (use --upgrade to upgrade): pymongo in /Users/alpkaancelik/anaconda/lib/python2.7/site-packages

In [48]:
# Save the movie Dictionaries corresponding to each row of the BoxOfficeMojo table.
import json 
import pymongo
from bson import json_util

# Make a dictionary out of the dataset for storage in JSON format.
movieSaved = {feature: bom_df[feature].values.tolist() for feature in bom_df.columns.values}
fp = open("allMovies.json","w")
json.dump(movieSaved, fp, default=json_util.default)
fp.close()

Loading and preparing IMDB review dataset

We have cleaned up our IMDB review dataset in the ipython notebook IMDB_reviews.ipynb. From that notebook we have been able to save dictionaries of our data, which we will now call.


In [49]:
with open("train_df_dict.json", "r") as fd:
    train_df_dict = json.load(fd)
with open("test_df_dict.json", "r") as fd:
    test_df_dict = json.load(fd)

In [50]:
train_df = pd.DataFrame(train_df_dict)
test_df = pd.DataFrame(test_df_dict)

The Stanford group distinguishes between train and test because this was relevant for their project. This may prove to be useful later, so we will keep two separate dataframes. However, for our purposes at the moment, we can combine them since the BOM data will serve as our true data set.


In [51]:
IMDB_df = train_df.append(test_df)

We want to figure out which movies from IMDB_df are also present in our BOM DF. So let's get all the movie titles in our BOM table.


In [52]:
BOM_movie_list = bom_df.title.values.tolist()

Now let's create a mask over IMDB_df, the boolean values of which indicate whether or not a movie is in the BOM list.


In [53]:
movie_mask = [(movie in BOM_movie_list) for movie in IMDB_df.movie_name]

In [54]:
sum(movie_mask)


Out[54]:
4111

We can now create our IMDB data frame with only those movies that also appear in the BOM tables from 1990 - 2015.


In [55]:
IMDB_dftouse=IMDB_df[movie_mask]

Finally we want to save our dictionary of IMDB_dftouse into a JSON file for storage.


In [56]:
IMDB_dftouse_dict = {feature: IMDB_dftouse[feature].values.tolist() for feature in IMDB_dftouse.columns.values}
fp = open("IMDB_dftouse_dict.json","w")
json.dump(IMDB_dftouse_dict, fp)
fp.close()

In [57]:
# Reopen
with open("IMDB_dftouse_dict.json", "r") as fd:
    IMDB_dftouse_dict = json.load(fd)
IMDB_dftouse = pd.DataFrame(IMDB_dftouse_dict)

Analyzing and Saving Review Attributes Using labMT Happiness Dictionary

Note: We originally intended to use the AFINN word list prepared by Finn Årup Nielsen to obtain word valences (http://www2.imm.dtu.dk/pubdb/views/publication_details.php?id=60100), but ultimately decided to use labMT.
labMTs word list contains around 10,000 scored words, whereas AFINN's only contains 2477.

Now let's download labMT. The file contains a "happiness" value, and ranks words by their happiness. It also includes mean and standard deviation, Twitter rank and Google rank.


In [58]:
url = 'http://www.plosone.org/article/fetchSingleRepresentation.action?uri=info:doi/10.1371/journal.pone.0026752.s001'
labmt = pd.read_csv(url, skiprows=2, sep='\t', index_col=0)

In [59]:
labmt.head()


Out[59]:
happiness_rank happiness_average happiness_standard_deviation twitter_rank google_rank nyt_rank lyrics_rank
word
laughter 1 8.50 0.9313 3600 -- -- 1728
happiness 2 8.44 0.9723 1853 2458 -- 1230
love 3 8.42 1.1082 25 317 328 23
happy 4 8.30 0.9949 65 1372 1313 375
laughed 5 8.26 1.1572 3334 3542 -- 2332

Now let's create a happiness dictionary of (word, valence) pairs where each valence is that word's original valence minus the average valence.


In [60]:
average = labmt.happiness_average.mean()
happiness = (labmt.happiness_average - average).to_dict()

In [61]:
print "Score(happy): ", happiness['happy']
print "Score(miserable): ", happiness['miserable']
print "Best score: ", max(happiness.values())
print "Worst score: ", min(happiness.values())


Score(happy):  2.92476032088
Score(miserable):  -2.83523967912
Best score:  3.12476032088
Worst score:  -4.07523967912

In [62]:
# Save to disc
# fp = open("happiness.json","w")
# json.dump(happiness, fp)
# fp.close()

In [63]:
# Reopen
with open("happiness.json", "r") as fp:
    happiness = json.load(fp)

Now let's collect several attributes from a given review's text body, and save all valuable information into a new data frame. First we define a function that removes stop words (all non important words from a valence perspective) from a text body.


In [64]:
from sklearn.feature_extraction import text
stopwords = text.ENGLISH_STOP_WORDS
punctuation = list('.,;:!?()[]{}`''\"@#$%^&*+-|-=~_')

def removeStopWords(text, stopwords = stopwords):
    new_text = ""
    for word in text.split():
        if word not in stopwords:
            while len(word) != 0 and word[-1] in punctuation:
                word = word[:len(word)-1]
            new_text += word + ' '
    return new_text

Now we'll write a function that returns total happiness, average happiness, total scorable words, and percentage of scorable words in a given review text.


In [65]:
'''
Name: getValenceInfo()
Inputs: review text, dictionary of happiness
Returns: a 4-tuple of (happiness total, happiness average, total # of scorable words, % of scorable words)
'''
def getValenceInfo(text, valenceDict):
    total_words = len(text.split())
    happiness_total, count_relevant = 0, 0
    for word in text.split():
        if word in valenceDict.keys():
            count_relevant += 1
            happiness_total += valenceDict[word]
    if count_relevant != 0: 
        avg_valence = 1.*happiness_total/count_relevant
    else: 
        avg_valence = 0
    return happiness_total, avg_valence, total_words, 1.*count_relevant / total_words

Now we'll write a function that, given a data frame, returns a new data frame with the concatenation of valence (happiness) info in 4 new columns: valence sum, valence average, # of scorable words, % of scorable words.


In [66]:
'''
Name: getAllInfo
Input: data frame, happiness dictionary, list of stop words
Returns: a new data frame with 4 new columns: valence_sum, valence_avg, n_scorables, pct_scorables
'''
def getAllInfo(df, valenceDict, stopwords): 
    valence_suml, valence_avgl, review_lenl, review_fractionl = [], [], [], []
    for i, row in df.iterrows():
        cleaned_review = removeStopWords(row['text'], stopwords)
        valence_sum, valence_avg, review_len, review_fraction = getValenceInfo(cleaned_review, valenceDict)
        valence_suml.append(valence_sum)
        valence_avgl.append(valence_avg)
        review_lenl.append(review_len)
        review_fractionl.append(review_fraction)
    conc = pd.DataFrame({'valence_sum': valence_suml, 'valence_avg':valence_avgl ,'n_scorables': review_lenl, 
                         'pct_scorables': review_fractionl})
    return pd.concat([df, conc], axis=1)

Now let's create a new dataframe valence_df with the valence statistics run on our IMDB_df. This code takes a few minutes to run.


In [67]:
%%time
valence_df = getAllInfo(IMDB_dftouse, happiness, stopwords)


---------------------------------------------------------------------------
KeyboardInterrupt                         Traceback (most recent call last)
<ipython-input-67-65c3726ef4dc> in <module>()
----> 1 get_ipython().run_cell_magic(u'time', u'', u'valence_df = getAllInfo(IMDB_dftouse, happiness, stopwords)')

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/core/interactiveshell.pyc in run_cell_magic(self, magic_name, line, cell)
   2262             magic_arg_s = self.var_expand(line, stack_depth)
   2263             with self.builtin_trap:
-> 2264                 result = fn(magic_arg_s, cell)
   2265             return result
   2266 

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/core/magics/execution.pyc in time(self, line, cell, local_ns)

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/core/magic.pyc in <lambda>(f, *a, **k)
    191     # but it's overkill for just that one bit of state.
    192     def magic_deco(arg):
--> 193         call = lambda f, *a, **k: f(*a, **k)
    194 
    195         if callable(arg):

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/core/magics/execution.pyc in time(self, line, cell, local_ns)
   1164         else:
   1165             st = clock2()
-> 1166             exec(code, glob, local_ns)
   1167             end = clock2()
   1168             out = None

<timed exec> in <module>()

<ipython-input-66-b22b5564e667> in getAllInfo(df, valenceDict, stopwords)
      8     for i, row in df.iterrows():
      9         cleaned_review = removeStopWords(row['text'], stopwords)
---> 10         valence_sum, valence_avg, review_len, review_fraction = getValenceInfo(cleaned_review, valenceDict)
     11         valence_suml.append(valence_sum)
     12         valence_avgl.append(valence_avg)

<ipython-input-65-882715705a0c> in getValenceInfo(text, valenceDict)
      9     for word in text.split():
     10         if word in valenceDict.keys():
---> 11             count_relevant += 1
     12             happiness_total += valenceDict[word]
     13     if count_relevant != 0:

KeyboardInterrupt: 

In [ ]:
valence_df.head()

Let's convert True/False to 1/0. It is needed to make valence_df JSON serializable, also better practice.


In [143]:
valence_df.positive = 1.0*valence_df.positive

In [144]:
# Save to disc
fp = open("valence_df_dict.json","w")
json.dump(valence_df.to_dict(), fp)
fp.close()

In [68]:
# Reopen
with open("valence_df_dict.json", "r") as fp:
    valence_df_dict = json.load(fp)
valence_df = pd.DataFrame(valence_df_dict)

Collecting Valence Statistics and Adjusting for Inflation

Let's see how well our valence summaries correlate with the reviews stars. This will serve as a sanity check to see if our valence estimates are working.


In [69]:
stars_val_avg = ols('stars ~ valence_avg',valence_df).fit()
stars_val_avg.summary()
sns.regplot(y="valence_avg", x="stars", data=valence_df)


Out[69]:
<matplotlib.axes._subplots.AxesSubplot at 0x10ea4ff50>

Yes it does, to some extent. The explanatory power is not high though.

Now, let's have a look at the valences of our positive and negative reviews and see how each is distributed to get a better sense of our data.


In [70]:
graph_val_avg = plt.hist(valence_df.valence_sum[valence_df.stars >=7],bins=40,alpha=0.7,label="Positive reviews")
graph_val_avg = plt.hist(valence_df.valence_sum[valence_df.stars <=4],bins=40,alpha=0.7,label="Negative reviews")
graph_val_avg = plt.title("Valence sum for positive and negative reviews")
graph_val_avg = plt.xlabel("Sum of valence")
graph_val_avg = plt.ylabel("Frequency")
graph_val_avg = plt.legend(loc='upper right')



In [71]:
graph_val_avg = plt.hist(valence_df.valence_avg[valence_df.stars >=7],bins=40,alpha=0.7,label="Positive reviews")
graph_val_avg = plt.hist(valence_df.valence_avg[valence_df.stars <=4],bins=40,alpha=0.7,label="Negative reviews")
graph_val_avg = plt.title("Valence average for positive and negative reviews")
graph_val_avg = plt.xlabel("Average valence")
graph_val_avg = plt.ylabel("Frequency")
graph23 = plt.legend(loc='upper left')


Now we'll import allMoives_new.json. Remember that we still need to convert some of the columns into the datetime type so we'll do that afterwards.


In [72]:
with open("allMovies.json", "r") as fd:
    bom_df = json.load(fd)
    bom_df = pd.DataFrame(bom_df)

In [73]:
bom_df[2572:2577]


Out[73]:
close_date close_day close_month close_year gross open_date open_day open_month open_year opening_gross opening_theaters ranking title total_theaters year
2572 {u'$date': 1446076800000} 29 10 2015 27740955 1440115200000000000 21 8 2015 10542116 2766 73 Sinister 2 2799 2015
2573 {u'$date': 1448496000000} 26 11 2015 27288872 1440547200000000000 26 8 2015 8111264 3355 74 No Escape 3415 2015
2574 None 0 0 2016 27121602 1445558400000000000 23 10 2015 10812861 3082 75 The Last Witch Hunter 3082 2015
2575 {u'$date': 1444521600000} 11 10 2015 26822144 1438905600000000000 7 8 2015 6610961 1603 76 Ricki and the Flash 2064 2015
2576 {u'$date': 1426723200000} 19 3 2015 26501323 1420156800000000000 2 1 2015 15027415 2602 77 The Woman in Black 2: Angel of Death 2602 2015

Let's make the dataframe a little bit cleaner.


In [74]:
# making close_date and open_date by concatenating the year, month and day
import datetime
close_date = []
for index, row in bom_df.iterrows():
    if row.close_day != '0':
        close_date.append(datetime.datetime(int(row.close_year), int(row.close_month), int(row.close_day)))
    else: 
        close_date.append(None)
bom_df['close_date'] = close_date

bom_df['open_date']=bom_df.open_year + '-' + bom_df.open_month + '-' + bom_df.open_day
bom_df['open_date']=bom_df['open_date'].apply(pd.datetools.parse)

# dropping unnecessary columns
bom_df = bom_df.drop('close_day', 1)
bom_df = bom_df.drop('close_month', 1)
bom_df = bom_df.drop('open_day', 1)
bom_df = bom_df.drop('open_month', 1)

Great! Let's take a look at all the dataframes we've created


In [75]:
bom_df.head()


Out[75]:
close_date close_year gross open_date open_year opening_gross opening_theaters ranking title total_theaters year
0 None 1991 285761243 1990-11-16 1990 17081997 1202 1 Home Alone 2173 1990
1 None 1991 217631306 1990-07-13 1990 12191540 1101 2 Ghost 1766 1990
2 None 1991 184208848 1990-11-09 1990 598257 14 3 Dances with Wolves 1636 1990
3 None 1991 178406268 1990-03-23 1990 11280591 1325 4 Pretty Woman 1811 1990
4 None 1991 135265915 1990-03-30 1990 25398367 2006 5 Teenage Mutant Ninja Turtles 2377 1990
5 None 1991 122012643 1990-03-02 1990 17161835 1225 6 The Hunt for Red October 1817 1990
6 None 1991 119394840 1990-06-01 1990 25533700 2060 7 Total Recall 2131 1990
7 None 1991 117540947 1990-07-06 1990 21744661 2507 8 Die Hard 2: Die Harder 2507 1990
8 None 1991 103738726 1990-06-15 1990 22543911 2332 9 Dick Tracy 2332 1990
9 None 1991 91457688 1990-12-22 1990 7918560 1833 10 Kindergarten Cop 1937 1990
10 None 1991 87727583 1990-05-25 1990 19089645 2019 11 Back to the Future Part III 2070 1990
11 None 1991 86303188 1990-07-27 1990 11718981 1349 12 Presumed Innocent 1451 1990
12 None 1991 82670733 1990-06-29 1990 15490445 2307 13 Days of Thunder 2307 1990
13 None 1991 80818974 1990-06-08 1990 19475559 2721 14 Another 48 HRS. 2721 1990
14 None 1991 71609321 1990-11-21 1990 13774642 1281 15 Three Men and a Little Lady 1614 1990
15 None 1991 70978012 1990-05-18 1990 15338160 1944 16 Bird on a Wire 2008 1990
16 None 1991 66666062 1990-12-25 1990 19558558 1901 17 The Godfather Part III 1922 1990
17 None 1991 61489265 1990-08-10 1990 10034685 1319 18 Flatliners 1483 1990
18 None 1991 61276872 1990-11-30 1990 10076834 1244 19 Misery 1370 1990
19 None 1991 56362352 1990-12-07 1990 159622 2 20 Edward Scissorhands 1372 1990
20 None 1991 53470891 1990-07-27 1990 10026900 1714 21 Problem Child 1769 1990
21 None 1991 53208180 1990-07-20 1990 8045760 1479 22 Arachnophobia 2005 1990
22 None 1991 52096475 1990-12-22 1990 417076 12 23 Awakenings 1330 1990
23 None 1991 47789074 1990-12-14 1990 8100640 1576 24 Look Who's Talking Too 1647 1990
24 None 1991 47410827 1990-02-09 1990 9213631 1301 25 Hard to Kill 1508 1990
25 None 1991 46836214 1990-09-19 1990 6368901 1070 26 Goodfellas 1328 1990
26 None 1991 46044396 1990-10-05 1990 11790047 1968 27 Marked for Death 1974 1990
27 None 1991 45681173 1990-06-22 1990 14145411 1768 28 Robocop 2 1806 1990
28 None 1991 44645619 1990-07-13 1990 7708029 1901 29 The Jungle Book (re-issue) (1990) 1923 1990
29 None 1991 44143410 1990-08-03 1990 8017438 1770 30 Young Guns II 1770 1990
... ... ... ... ... ... ... ... ... ... ... ...
2570 None 2016 31090320 2015-10-16 2015 13143310 2984 71 Crimson Peak 2991 2015
2571 None 2016 29476394 2015-09-02 2015 8246267 1960 72 A Walk in the Woods 2158 2015
2572 2015-10-29 00:00:00 2015 27740955 2015-08-21 2015 10542116 2766 73 Sinister 2 2799 2015
2573 2015-11-26 00:00:00 2015 27288872 2015-08-26 2015 8111264 3355 74 No Escape 3415 2015
2574 None 2016 27121602 2015-10-23 2015 10812861 3082 75 The Last Witch Hunter 3082 2015
2575 2015-10-11 00:00:00 2015 26822144 2015-08-07 2015 6610961 1603 76 Ricki and the Flash 2064 2015
2576 2015-03-19 00:00:00 2015 26501323 2015-01-02 2015 15027415 2602 77 The Woman in Black 2: Angel of Death 2602 2015
2577 2015-05-07 00:00:00 2015 26461644 2015-03-13 2015 11012305 3171 78 Run All Night 3171 2015
2578 2015-06-11 00:00:00 2015 25801047 2015-02-27 2015 10203437 2666 79 The Lazarus Effect 2666 2015
2579 2015-09-03 00:00:00 2015 25442958 2015-04-10 2015 237264 4 80 Ex Machina 2004 2015
2580 None 2016 22822987 2015-11-13 2015 8317545 2603 81 Love the Coopers 2603 2015
2581 2015-09-17 00:00:00 2015 22764410 2015-07-10 2015 9808463 2720 82 The Gallows 2720 2015
2582 2015-10-15 00:00:00 2015 22467450 2015-08-21 2015 8326530 3261 83 Hitman: Agent 47 3273 2015
2583 2015-03-26 00:00:00 2015 22348241 2015-01-30 2015 8310252 2893 84 Project Almanac 2900 2015
2584 2015-05-14 00:00:00 2015 21571189 2015-01-30 2015 6213362 1823 85 Black or White 1823 2015
2585 2015-07-30 00:00:00 2015 21067116 2015-05-29 2015 9670235 2815 86 Aloha 2815 2015
2586 2015-10-22 00:00:00 2015 19375982 2015-08-05 2015 4038962 2320 87 Shaun the Sheep Movie 2360 2015
2587 2015-05-21 00:00:00 2015 18754371 2015-01-16 2015 197000 12 88 Still Alice 1318 2015
2588 None 2016 18300124 2015-10-23 2015 8070493 1656 89 Paranormal Activity: The Ghost Dimension 1656 2015
2589 None 2016 17753943 2015-10-09 2015 521522 4 90 Steve Jobs 2493 2015
2590 2015-11-05 00:00:00 2015 17737646 2015-07-17 2015 2434908 361 91 Mr. Holmes 898 2015
2591 2015-09-17 00:00:00 2015 17506470 2015-06-19 2015 6100010 2002 92 Dope 2002 2015
2592 None 2016 17402274 2015-11-20 2015 6652996 2392 93 The Secret in their Eyes (2015) 2392 2015
2593 None 2016 17265460 2015-12-04 2015 16293325 2902 94 Krampus 2902 2015
2594 2015-03-19 00:00:00 2015 17223265 2015-02-06 2015 7217640 2875 95 Seventh Son 2875 2015
2595 None 2016 16792305 2015-11-06 2015 295009 5 96 Spotlight 1089 2015
2596 2015-07-23 00:00:00 2015 16432322 2015-04-17 2015 4577861 2012 97 Monkey Kingdom 2012 2015
2597 2015-11-19 00:00:00 2015 16029670 2015-09-04 2015 7355622 3434 98 The Transporter Refueled 3434 2015
2598 2015-06-25 00:00:00 2015 14674076 2015-03-13 2015 160089 4 99 It Follows 1655 2015
2599 2015-10-08 00:00:00 2015 14440985 2015-08-21 2015 5454284 2778 100 American Ultra 2778 2015

2600 rows × 11 columns

Now, we want to make a new dataframe flattened_df that we can use to run our regressions on. This dataframe will include all the columns in movie_df and the extra columns

  • number of reviews for the movie in IMDB_df
  • average stars from the reviews
  • overall ranking

In [76]:
# set index to title
indexed_df = bom_df.set_index("title")

In [77]:
# use groupby to get the review_count, star_avg, valence_avg, valence_sum, pct_scorables, n_scorables
gold = valence_df.groupby("movie_name")
n_scorables = gold.n_scorables.mean()
pct_scorables = gold.pct_scorables.mean()
review_count = gold.movie_name.count()
star_avg = gold.stars.mean()
positive = gold.positive.mean()
valence_avg = gold.valence_avg.mean()
valence_sum = gold.valence_sum.mean()

In [78]:
# concatenate the two dfs into our final dataframe flattened_df
flattened_df = pd.concat([indexed_df, review_count], axis=1, join_axes=[indexed_df.index])
flattened_df.rename(columns={'movie_name': 'review_count'}, inplace=True)
flattened_df = pd.concat([flattened_df, star_avg], axis=1, join_axes=[indexed_df.index])
flattened_df.rename(columns={'stars': 'star_avg'}, inplace=True)
flattened_df = pd.concat([flattened_df, positive], axis=1, join_axes=[indexed_df.index])

flattened_df = pd.concat([flattened_df, valence_avg], axis=1, join_axes=[indexed_df.index])
# flattened_df.rename(columns={'movie_name': 'review_count'}, inplace=True)
flattened_df = pd.concat([flattened_df, valence_sum], axis=1, join_axes=[indexed_df.index])
# flattened_df.rename(columns={'movie_name': 'review_count'}, inplace=True)

flattened_df = pd.concat([flattened_df, n_scorables], axis=1, join_axes=[indexed_df.index])

flattened_df = pd.concat([flattened_df, pct_scorables], axis=1, join_axes=[indexed_df.index])


# flattened_df.rename(columns={'absolute_stars': 'abs_star_avg'}, inplace=True)

In [79]:
flattened_df.head()


Out[79]:
close_date close_year gross open_date open_year opening_gross opening_theaters ranking total_theaters year review_count star_avg positive valence_avg valence_sum n_scorables pct_scorables
title
Home Alone None 1991 285761243 1990-11-16 1990 17081997 1202 1 2173 1990 NaN NaN NaN NaN NaN NaN NaN
Ghost None 1991 217631306 1990-07-13 1990 12191540 1101 2 1766 1990 NaN NaN NaN NaN NaN NaN NaN
Dances with Wolves None 1991 184208848 1990-11-09 1990 598257 14 3 1636 1990 NaN NaN NaN NaN NaN NaN NaN
Pretty Woman None 1991 178406268 1990-03-23 1990 11280591 1325 4 1811 1990 2 1 0 0.407409 84.055626 338 0.613324
Teenage Mutant Ninja Turtles None 1991 135265915 1990-03-30 1990 25398367 2006 5 2377 1990 NaN NaN NaN NaN NaN NaN NaN

Let's create a new column for the absolute value of the valence averages of the reviews for a particular movie. This will eventually test the hypothesis of whether or not polarizing movies make a lot of money.


In [46]:
valence_df['abs_valence_avg'] = np.abs(valence_df['valence_avg']-np.mean(flattened_df['valence_avg']))
abs_valence_avg = gold.abs_valence_avg.mean()
flattened_df = pd.concat([flattened_df, abs_valence_avg], axis=1, join_axes=[indexed_df.index])

In [47]:
flattened_df.head()


Out[47]:
close_date close_year gross open_date open_year opening_gross opening_theaters ranking total_theaters year review_count star_avg positive valence_avg valence_sum n_scorables pct_scorables abs_valence_avg
title
Home Alone None 1991 285761243 1990-11-16 1990 17081997 1202 1 2173 1990 NaN NaN NaN NaN NaN NaN NaN NaN
Ghost None 1991 217631306 1990-07-13 1990 12191540 1101 2 1766 1990 NaN NaN NaN NaN NaN NaN NaN NaN
Dances with Wolves None 1991 184208848 1990-11-09 1990 598257 14 3 1636 1990 NaN NaN NaN NaN NaN NaN NaN NaN
Pretty Woman None 1991 178406268 1990-03-23 1990 11280591 1325 4 1811 1990 2 1 0 0.407409 84.055626 338 0.613324 0.129283
Teenage Mutant Ninja Turtles None 1991 135265915 1990-03-30 1990 25398367 2006 5 2377 1990 NaN NaN NaN NaN NaN NaN NaN NaN

Now let's take only those movies that appear in the IMDB data set, i.e. those that have a review count.


In [48]:
flattened_df = flattened_df[~flattened_df['review_count'].map(np.isnan)]
print "Num. overlapping movies: ", flattened_df.shape[0]


Out[48]:
(334, 18)

Adjusting for Inflation

The purchasing power of individuals change over time due to the changes in the value of money. Thus, to compare the true value of movies that came out in different years, we need yearly U.S. inflation data.

For instance, Avatar looks like highest grossing movie of all time, but when adjusted for inflation, turns out it's actually Gone with the Wind.

Hence, we need to adjust the gross incomes of movies for inflation over the past 26 years to get better insight into how successful they truly were in the box office.


In [80]:
inflation = pd.read_csv("inf.csv")

In [81]:
years_90 = range(1990,2015)
infdict = {}
infindex, infvalue = 0, 1

testlist = []
for row in inflation.values:
    currentval = 1 + (row[1]/100)
    cuminf = infvalue*currentval
    infdict[years_90[infindex]] = cuminf
    infindex += 1
    infvalue = cuminf
    testlist.append(cuminf)

inframe = pd.DataFrame(data=testlist, index=range(1990,2015))

In [82]:
infdict


Out[82]:
{1990: 1.0539795644,
 1991: 1.098615219150804,
 1992: 1.1318902930939463,
 1993: 1.1652998117775315,
 1994: 1.1956843237413164,
 1995: 1.229228287177842,
 1996: 1.2652594783591868,
 1997: 1.2948373218617284,
 1998: 1.3149368109750392,
 1999: 1.3437079860225376,
 2000: 1.3890830868495474,
 2001: 1.4283409518690031,
 2002: 1.4509948911070383,
 2003: 1.4839338531885458,
 2004: 1.5236622748059583,
 2005: 1.5753562785628925,
 2006: 1.626176391500925,
 2007: 1.6725658779300527,
 2008: 1.7367773595171863,
 2009: 1.7306023124666896,
 2010: 1.7589849421993997,
 2011: 1.814513310047201,
 2012: 1.852061710150393,
 2013: 1.8791913148899477,
 2014: 1.909675988181881}

For movies that are released this year, we use the inflation data of 2014, since the 2015 numbers will be released in 2016


In [89]:
newgross, newopengross = [], []
for gross, opengross, openyr in zip(flattened_df.gross, flattened_df.opening_gross, flattened_df.open_year):
    if int(openyr) == 2015:
        openyr = 2014
    newgross.append(infdict[int(openyr)]*gross)
    newopengross.append(infdict[int(openyr)]*opengross)


---------------------------------------------------------------------------
KeyError                                  Traceback (most recent call last)
<ipython-input-89-60ecfe487ae8> in <module>()
      1 newgross, newopengross = [], []
      2 for gross, opengross, openyr in zip(flattened_df.gross, flattened_df.opening_gross, flattened_df.open_year):
----> 3     newgross.append(infdict[int(openyr)]*gross)
      4     newopengross.append(infdict[int(openyr)]*opengross)

KeyError: 2015

In [54]:
dftouse = flattened_df
dftouse['adj_gross'] = newgross
dftouse['adj_opening_gross'] = newopengross

In [55]:
# creating binary variables of adjusted grossing for classifications
dftouse['adj_gross_bin'] = 1*(dftouse.adj_gross>np.mean(dftouse.adj_gross))
dftouse['adj_opening_gross_bin'] = 1*(dftouse.adj_opening_gross>np.mean(dftouse.adj_opening_gross))

In [56]:
dftouse.head()


Out[56]:
close_date close_year gross open_date open_year opening_gross opening_theaters ranking total_theaters year review_count star_avg positive valence_avg valence_sum n_scorables pct_scorables abs_valence_avg adj_gross adj_opening_gross adj_gross_bin adj_opening_gross_bin
title
Pretty Woman None 1991 178406268 1990-03-23 1990 11280591 1325 4 1811 1990 2 1.000000 0.0 0.407409 84.055626 338.000000 0.613324 0.129283 1.880366e+08 11889512.388355 1 0
Dick Tracy None 1991 103738726 1990-06-15 1990 22543911 2332 9 2332 1990 24 8.875000 1.0 0.619329 46.075866 142.750000 0.580769 0.294604 1.093385e+08 23760821.495652 1 1
Flatliners None 1991 61489265 1990-08-10 1990 10034685 1319 18 1483 1990 30 6.966667 0.8 0.341229 27.310654 145.866667 0.616311 0.164876 6.480843e+07 10576352.925191 0 0
Problem Child None 1991 53470891 1990-07-27 1990 10026900 1714 21 1769 1990 8 2.500000 0.0 0.181693 15.963458 120.000000 0.607353 0.192622 5.635723e+07 10568147.694282 0 0
Marked for Death None 1991 46044396 1990-10-05 1990 11790047 1968 27 1974 1990 3 4.000000 0.0 0.052945 10.623149 376.000000 0.564525 0.277000 4.852985e+07 12426468.601316 0 0

Now that we have adjusted for inflation, we can remove the previous gross and all columns pertaining to date (except perhaps year, since it's interesting).


In [57]:
keep = ['ranking','total_theaters', 'year', 'review_count', 'star_avg','positive','valence_avg','valence_sum',
        'n_scorables','pct_scorables','abs_valence_avg','adj_gross', 'adj_opening_gross', 'adj_gross_bin','adj_opening_gross_bin']
dftouse = dftouse[keep]

In [58]:
dftouse.head()


Out[58]:
ranking total_theaters year review_count star_avg positive valence_avg valence_sum n_scorables pct_scorables abs_valence_avg adj_gross adj_opening_gross adj_gross_bin adj_opening_gross_bin
title
Pretty Woman 4 1811 1990 2 1.000000 0.0 0.407409 84.055626 338.000000 0.613324 0.129283 1.880366e+08 11889512.388355 1 0
Dick Tracy 9 2332 1990 24 8.875000 1.0 0.619329 46.075866 142.750000 0.580769 0.294604 1.093385e+08 23760821.495652 1 1
Flatliners 18 1483 1990 30 6.966667 0.8 0.341229 27.310654 145.866667 0.616311 0.164876 6.480843e+07 10576352.925191 0 0
Problem Child 21 1769 1990 8 2.500000 0.0 0.181693 15.963458 120.000000 0.607353 0.192622 5.635723e+07 10568147.694282 0 0
Marked for Death 27 1974 1990 3 4.000000 0.0 0.052945 10.623149 376.000000 0.564525 0.277000 4.852985e+07 12426468.601316 0 0

In [60]:
# Let's save
fp = open("dftouse.json","w")
json.dump(dftouse.to_dict(), fp)
fp.close()

Preliminary Analysis

Plotting Gross Against Valence Stats


In [8]:
with open("complete_valence.json", "r") as fp:
    complete_df_dict = json.load(fp)
completedf = pd.DataFrame(complete_df_dict)

In [14]:
completedf = completedf.reset_index().drop('index',1)
dftouse = completedf

In [61]:
# Reopen dftouse
with open("dftouse.json", "r") as fp:
    dftouse_dict = json.load(fp)
dftouse = pd.DataFrame(dftouse_dict)

We have chosen to only use opening grossing of movies as our y-variable. This is because the time for which the movie is open is standardized. We considered using (total grossing)/(total time in theaters) as the y-variable, but this was not feasible because we do not have a closing date for every movie and therefore could not calculate the total time in theaters fo every review.

Let's remove outliers from the dataset, so that we can more easily see trends. An outlier in column valence_avg is defined as a point that it more than 3 standard deviations away from the mean.


In [33]:
def is_not_outlier(num, avg, sd, m = 3.):
    return np.absolute(num-avg) < m*sd

In [34]:
v_avg_avg = np.mean(dftouse.valence_avg)
v_avg_sd = np.std(dftouse.valence_avg)
mask = [is_not_outlier(num, v_avg_avg, v_avg_sd) for num in dftouse.valence_avg]
print "Num outliers: ", (len(dftouse.valence_avg) - sum(mask))
dftouse = dftouse[mask]

Now let's make scatter plots for each review, of opening gross values against average valence, sum valence, and polarity (absolute valence_avg).


In [37]:
# First, let's make scatter plots of opening gross numbers against valence_avg
fig, axes = plt.subplots(nrows = 1, ncols = 3, figsize=(25, 8),tight_layout = True)
titles = ["Opening Gross vs. Valence Avg", "Opening Gross vs. Valence Sum", "Opening Gross vs. Polarity"]
xlabels = ["Valence Avg", "Valence Sum", "| Valence Avg |"]
x = [dftouse.valence_avg, dftouse.valence_sum, dftouse.abs_valence_avg]
for (ax, title, xlabel, x) in zip(axes.ravel(), titles, xlabels, x):
    m, b = np.polyfit(x, dftouse.adj_opening_gross, 1)
#     ax.plot(x, m*x + b, '-')
    ax.plot(x, dftouse.adj_opening_gross, '.',x, m*x + b, '-')
    ax.set_title(title)
    ax.set_xlabel(xlabel)
    ax.set_ylim(-1000, 1.8*1e8)


---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-37-692bc31d1be8> in <module>()
      3 titles = ["Opening Gross vs. Valence Avg", "Opening Gross vs. Valence Sum", "Opening Gross vs. Polarity"]
      4 xlabels = ["Valence Avg", "Valence Sum", "| Valence Avg |"]
----> 5 x = [dftouse.valence_avg, dftouse.valence_sum, dftouse.abs_valence_avg]
      6 for (ax, title, xlabel, x) in zip(axes.ravel(), titles, xlabels, x):
      7     m, b = np.polyfit(x, dftouse.adj_opening_gross, 1)

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/pandas/core/generic.pyc in __getattr__(self, name)
   2148                 return self[name]
   2149             raise AttributeError("'%s' object has no attribute '%s'" %
-> 2150                                  (type(self).__name__, name))
   2151 
   2152     def __setattr__(self, name, value):

AttributeError: 'DataFrame' object has no attribute 'abs_valence_avg'

The above scatterplots seem to show that there is little correlation between opening gross and all three predictors.

However, we foresee a limitation to our analysis. The reviews dataset we have was constructed by taking the most polarizing reviews that did not represent the realistic viewership response. For example, very successful movies that have bad reviews might be predicted as lowly grossing because they have a few poor reviews and it is in our dataset. To curb this problem, we are going to divide our dataset into movies that that received poor reviews and movies receivin good reviews. This is defined as the reviewer giving less than 4 stars and the reviewer giving more than 7 stars. We then conduct our regression analysis for each of these sub-datasets. Our hypothesis is that good, higher grossing movies that received poor reviews will receive less poorer reviews on average. In contrast, the good movies that received good reviews should receive higher reviews on average. We create these separate datasets below.


In [20]:
dftouse_small = dftouse[dftouse['valence_avg'] <= np.mean(dftouse['valence_avg'])]
dftouse_large = dftouse[dftouse['valence_avg'] >= np.mean(dftouse['valence_avg'])]

In [21]:
# And now, regressions
reg_list = []

og_val_avg = ols('adj_opening_gross ~ valence_avg',dftouse).fit()
og_val_avg_small = ols('adj_opening_gross ~ valence_avg',dftouse_small).fit()
og_val_avg_large = ols('adj_opening_gross ~ valence_avg',dftouse_large).fit()
og_abs_val_avg_large = ols('adj_opening_gross ~ abs_valence_avg',dftouse).fit()

og_val_sum = ols('adj_opening_gross ~ valence_sum',dftouse).fit()
og_val_sum_small = ols('adj_opening_gross ~ valence_sum',dftouse_small).fit()
og_val_sum_large = ols('adj_opening_gross ~ valence_sum',dftouse_large).fit()

reg_list.append(og_val_avg)
reg_list.append(og_val_avg)
reg_list.append(og_val_avg_small)
reg_list.append(og_val_avg_large)
reg_list.append(og_abs_val_avg_large)

reg_list.append(og_val_sum)
reg_list.append(og_val_sum_small)
reg_list.append(og_val_sum_large)

og_val_avg.summary()
og_val_avg_small.summary()
og_val_avg_large.summary()
og_abs_val_avg_large.summary()

og_val_sum.summary()
og_val_sum_small.summary()
og_val_sum_large.summary()


---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
<ipython-input-21-e535dc2ef9cf> in <module>()
      2 reg_list = []
      3 
----> 4 og_val_avg = ols('adj_opening_gross ~ valence_avg',dftouse).fit()
      5 og_val_avg_small = ols('adj_opening_gross ~ valence_avg',dftouse_small).fit()
      6 og_val_avg_large = ols('adj_opening_gross ~ valence_avg',dftouse_large).fit()

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/statsmodels/base/model.pyc in from_formula(cls, formula, data, subset, *args, **kwargs)
    145         (endog, exog), missing_idx = handle_formula_data(data, None, formula,
    146                                                          depth=eval_env,
--> 147                                                          missing=missing)
    148         kwargs.update({'missing_idx': missing_idx,
    149                        'missing': missing})

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/statsmodels/formula/formulatools.pyc in handle_formula_data(Y, X, formula, depth, missing)
     63         if data_util._is_using_pandas(Y, None):
     64             result = dmatrices(formula, Y, depth, return_type='dataframe',
---> 65                                NA_action=na_action)
     66         else:
     67             result = dmatrices(formula, Y, depth, return_type='dataframe',

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/patsy/highlevel.pyc in dmatrices(formula_like, data, eval_env, NA_action, return_type)
    295     eval_env = EvalEnvironment.capture(eval_env, reference=1)
    296     (lhs, rhs) = _do_highlevel_design(formula_like, data, eval_env,
--> 297                                       NA_action, return_type)
    298     if lhs.shape[1] == 0:
    299         raise PatsyError("model is missing required outcome variables")

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/patsy/highlevel.pyc in _do_highlevel_design(formula_like, data, eval_env, NA_action, return_type)
    150         return iter([data])
    151     builders = _try_incr_builders(formula_like, data_iter_maker, eval_env,
--> 152                                   NA_action)
    153     if builders is not None:
    154         return build_design_matrices(builders, data,

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/patsy/highlevel.pyc in _try_incr_builders(formula_like, data_iter_maker, eval_env, NA_action)
     55                                        formula_like.rhs_termlist],
     56                                       data_iter_maker,
---> 57                                       NA_action)
     58     else:
     59         return None

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/patsy/build.pyc in design_matrix_builders(termlists, data_iter_maker, NA_action)
    658                                                    factor_states,
    659                                                    data_iter_maker,
--> 660                                                    NA_action)
    661     # Now we need the factor evaluators, which encapsulate the knowledge of
    662     # how to turn any given factor into a chunk of data:

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/patsy/build.pyc in _examine_factor_types(factors, factor_states, data_iter_maker, NA_action)
    422     for data in data_iter_maker():
    423         for factor in list(examine_needed):
--> 424             value = factor.eval(factor_states[factor], data)
    425             if factor in cat_sniffers or guess_categorical(value):
    426                 if factor not in cat_sniffers:

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/patsy/eval.pyc in eval(self, memorize_state, data)
    483     #    http://nedbatchelder.com/blog/200711/rethrowing_exceptions_in_python.html
    484     def eval(self, memorize_state, data):
--> 485         return self._eval(memorize_state["eval_code"], memorize_state, data)
    486 
    487 def test_EvalFactor_basics():

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/patsy/eval.pyc in _eval(self, code, memorize_state, data)
    466                                  self,
    467                                  self._eval_env.eval,
--> 468                                  code, inner_namespace=inner_namespace)
    469 
    470     def memorize_chunk(self, state, which_pass, data):

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/patsy/compat.pyc in call_and_wrap_exc(msg, origin, f, *args, **kwargs)
    115 def call_and_wrap_exc(msg, origin, f, *args, **kwargs):
    116     try:
--> 117         return f(*args, **kwargs)
    118     except Exception as e:
    119         if sys.version_info[0] >= 3:

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/patsy/eval.pyc in eval(self, expr, source_name, inner_namespace)
    125         code = compile(expr, source_name, "eval", self.flags, False)
    126         return eval(code, {}, VarLookupDict([inner_namespace]
--> 127                                             + self._namespaces))
    128 
    129     @classmethod

<string> in <module>()

NameError: name 'adj_opening_gross' is not defined

Unfortunately, our regressions above didn't give us significant results, meaning that there might not a strong relationship between our valance variables and gross box office success.

Now, we attempt to fit a logistic regression on our data to see if we'll get a better result.


In [69]:
logit_model = logit('adj_gross_bin ~ abs_valence_avg',dftouse).fit()
print logit_model.summary()


Optimization terminated successfully.
         Current function value: 0.620079
         Iterations 5
                           Logit Regression Results                           
==============================================================================
Dep. Variable:          adj_gross_bin   No. Observations:                  331
Model:                          Logit   Df Residuals:                      329
Method:                           MLE   Df Model:                            1
Date:                Sun, 06 Dec 2015   Pseudo R-squ.:                 0.01112
Time:                        21:28:47   Log-Likelihood:                -205.25
converged:                       True   LL-Null:                       -207.55
                                        LLR p-value:                   0.03168
===================================================================================
                      coef    std err          z      P>|z|      [95.0% Conf. Int.]
-----------------------------------------------------------------------------------
Intercept          -0.1770      0.292     -0.605      0.545        -0.750     0.396
abs_valence_avg    -2.8592      1.357     -2.107      0.035        -5.518    -0.200
===================================================================================

Clearly not the way to go.

Checking for Hidden Clusters in the Data

Looking at the regression results above, we can see our valence data is not strongly correlated with gross box office numbers. However, this does not imply that there is not a relationship between movie reviews and box office success. It is certainly possible that there are different underlying structures for various groups of movies in the world.

A neat way to discover these structures is to implement a Clustering Algorithm. Using the sklearn.mixture.GMM, we can determine if there are underlying Gaussian distributions in the population that is creating the patches of data we see in our sample. Thus, we can determine which subsets of our data we should be running our regressions on.


In [23]:
import gensim

In [24]:
from sklearn.feature_extraction.text import CountVectorizer
#credit: Lab10
vectorizer = CountVectorizer(min_df=1, stop_words='english')
X=vectorizer.fit_transform(valence_df.text)

corpus=vectorizer.get_feature_names()
id2words = dict((v, k) for k, v in vectorizer.vocabulary_.iteritems())
corpus_gensim = gensim.matutils.Sparse2Corpus(X, documents_columns=False)

lda = gensim.models.ldamodel.LdaModel(corpus_gensim, id2word=id2words, num_topics=2, update_every=1, chunksize=2000, passes=1)

lda.print_topics()


---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
<ipython-input-24-4738c0f1329c> in <module>()
      2 #credit: Lab10
      3 vectorizer = CountVectorizer(min_df=1, stop_words='english')
----> 4 X=vectorizer.fit_transform(valence_df.text)
      5 
      6 corpus=vectorizer.get_feature_names()

NameError: name 'valence_df' is not defined

In [25]:
Xall=dftouse[['valence_sum', 'adj_gross']].values
from sklearn.mixture import GMM
n_clusters=2
clfgmm = GMM(n_components=n_clusters, covariance_type="tied")
clfgmm.fit(Xall)
print clfgmm
gmm_means=clfgmm.means_
gmm_covar=clfgmm.covars_
print gmm_means, gmm_covar


---------------------------------------------------------------------------
KeyError                                  Traceback (most recent call last)
<ipython-input-25-91e7a3e626ac> in <module>()
----> 1 Xall=dftouse[['valence_sum', 'adj_gross']].values
      2 from sklearn.mixture import GMM
      3 n_clusters=2
      4 clfgmm = GMM(n_components=n_clusters, covariance_type="tied")
      5 clfgmm.fit(Xall)

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/pandas/core/frame.pyc in __getitem__(self, key)
   1789         if isinstance(key, (Series, np.ndarray, Index, list)):
   1790             # either boolean or fancy integer index
-> 1791             return self._getitem_array(key)
   1792         elif isinstance(key, DataFrame):
   1793             return self._getitem_frame(key)

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/pandas/core/frame.pyc in _getitem_array(self, key)
   1833             return self.take(indexer, axis=0, convert=False)
   1834         else:
-> 1835             indexer = self.ix._convert_to_indexer(key, axis=1)
   1836             return self.take(indexer, axis=1, convert=True)
   1837 

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/pandas/core/indexing.pyc in _convert_to_indexer(self, obj, axis, is_setter)
   1110                 mask = check == -1
   1111                 if mask.any():
-> 1112                     raise KeyError('%s not in index' % objarr[mask])
   1113 
   1114                 return _values_from_object(indexer)

KeyError: "['adj_gross'] not in index"

In [26]:
from scipy import linalg

def plot_ellipse(splot, mean, cov, color):
    v, w = linalg.eigh(cov)
    u = w[0] / linalg.norm(w[0])
    angle = np.arctan(u[1] / u[0])
    angle = 180 * angle / np.pi  # convert to degrees
    # filled Gaussian at 2 standard deviation
    ell = mpl.patches.Ellipse(mean, 2 * v[0] ** 0.5, 2 * v[1] ** 0.5,
                              180 + angle, color=color, lw=3, fill=False)
    ell.set_clip_box(splot.bbox)
    ell1 = mpl.patches.Ellipse(mean, 1 * v[0] ** 0.5, 1 * v[1] ** 0.5,
                              180 + angle, color=color, lw=3, fill=False)
    ell1.set_clip_box(splot.bbox)
    ell3 = mpl.patches.Ellipse(mean, 3 * v[0] ** 0.5, 3 * v[1] ** 0.5,
                              180 + angle, color=color, lw=3, fill=False)
    ell3.set_clip_box(splot.bbox)
    #ell.set_alpha(0.2)
    splot.add_artist(ell)
    splot.add_artist(ell1)
    splot.add_artist(ell3)

In [75]:
plt.figure()
ax=plt.gca()
plot_ellipse(ax, gmm_means[0], gmm_covar, 'k')
plot_ellipse(ax, gmm_means[1], gmm_covar, 'k')
gmm_labels=clfgmm.predict(Xall)
for k, col in zip(range(n_clusters), ['blue','red']):
    my_members = gmm_labels == k
    ax.plot(Xall[my_members, 0], Xall[my_members, 1], 'w',
            markerfacecolor=col, marker='.', alpha=0.5)


This gives us a good approximation of two distinct clusters in our data. Basically, the movies that make more than 500 million dollars in total adjusted gross belongs to the red cluster, and the rest (which are the signifcant majority of the movies) belong to the blue cluster, so we should take this into account when doing further analysis.

Let's try to see if we would get a better result with 3 clusters:


In [76]:
n_clusters=3
clfgmm3 = GMM(n_components=n_clusters, covariance_type="tied")
clfgmm3.fit(Xall)
print clfgmm
gmm_means=clfgmm3.means_
gmm_covar=clfgmm3.covars_
print gmm_means, gmm_covar
plt.figure()
ax=plt.gca()
plot_ellipse(ax, gmm_means[0], gmm_covar, 'k')
plot_ellipse(ax, gmm_means[1], gmm_covar, 'k')
plot_ellipse(ax, gmm_means[2], gmm_covar, 'k')
gmm_labels=clfgmm3.predict(Xall)
for k, col in zip(range(n_clusters), ['blue','red', 'green']):
    my_members = gmm_labels == k
    ax.plot(Xall[my_members, 0], Xall[my_members, 1], 'w',
            markerfacecolor=col, marker='.', alpha=0.5)


GMM(covariance_type='tied', init_params='wmc', min_covar=0.001,
  n_components=2, n_init=1, n_iter=100, params='wmc', random_state=None,
  thresh=None, tol=0.001)
[[  2.18593152e+01   7.36447081e+07]
 [  3.08921900e+01   8.14926414e+08]
 [  2.45745724e+01   1.36629515e+08]] [[  1.77916251e+02   7.15394460e+07]
 [  7.15394460e+07   6.26401705e+15]]

Since there is so much overlap between the lower two clusters this time, we see that clustering into 2 groups is the better choice for our data. (We have also tried more clusters, but they similarly give worse results than the 2-clusters version)

Bag of Words

First import our dataset & dictionary


In [147]:
# with open("IMDB_dftouse_dict.json", "r") as fd:
#     IMDB_dftouse_dict = json.load(fd)
# maas_IMDB = pd.DataFrame(IMDB_dftouse_dict)

with open("valence_df_dict.json", "r") as fp:
    valence_df_dict = json.load(fp)
maas_IMDB = pd.DataFrame(valence_df_dict)

In [148]:
maas_IMDB.head()


Out[148]:
movie_id movie_name n_scorables pct_scorables positive stars text url valence_avg valence_sum
0 10027 Titanic 120 0.666667 1 7 Sure, Titanic was a good movie, the first time... http://www.imdb.com/title/tt0120338/usercommen... 0.479760 38.380826
1 10028 Titanic 65 0.538462 1 10 When I saw this movie I was stunned by what a ... http://www.imdb.com/title/tt0120338/usercommen... 0.508760 17.806611
10 10037 Titanic 95 0.589474 1 9 The ship may have sunk but the movie didn't!!!... http://www.imdb.com/title/tt0120338/usercommen... 0.700832 39.246578
100 11015 Cliffhanger 84 0.500000 1 9 This movie is directed by Renny Harlin the fin... http://www.imdb.com/title/tt0106582/usercommen... 0.794284 33.359933
1000 10544 The First Power 194 0.618557 0 4 When childhood memory tells you this was a sca... http://www.imdb.com/title/tt0099578/usercommen... 0.132427 15.891239

In [149]:
maas_IMDB.shape


Out[149]:
(4111, 10)

In [150]:
with open("happiness.json", "r") as fp:
    happiness = json.load(fp)

In [151]:
len(happiness)


Out[151]:
10222

Now we begin the Natural Language processing

This will take the form of a few steps.

  1. Punctuation: we will remove punctuation from reviews, so that all words can be recognized
  2. Lemmatization: we will reduce words to lemmas
  3. Removing stop words: we will remove common words from our vocabulary, because they are unlikely to have been used to express sentiment -- which is what we are interested in

Emulating HW5

  1. For each review create a list of nouns, and a list of adjectives
  2. For the nouns, perform LDA to separate them into 2 topics to see if there are 2 topics that are relevant i.e. actors vs. plot or whether it's sequel or a stand alone movie
  3. Run the sentiment analysis on the adjectives (N.B. At this point it is still not on an external dataset)
  4. Putting the topics and sentiment analysis together (marrying the nouns & the adjectives)
  5. Estimate the overall mean for each movie on each topic

In [152]:
from pattern.en import parse
from pattern.en import pprint
from pattern.vector import stem, PORTER, LEMMA
punctuation = list('.,;:!?()[]{}`''\"@#$^&*+-|=~_')

In [153]:
from sklearn.feature_extraction import text 
stopwords=text.ENGLISH_STOP_WORDS

1. For each review create a list of nouns, and a list of adjectives


In [154]:
import re
regex1=re.compile(r"\.{2,}")
regex2=re.compile(r"\-{2,}")

In [155]:
def get_parts(thetext):
    thetext=re.sub(regex1, ' ', thetext)
    thetext=re.sub(regex2, ' ', thetext)
    nouns=[]
    descriptives=[]
    for i,sentence in enumerate(parse(thetext, tokenize=True, lemmata=True).split()):
        nouns.append([])
        descriptives.append([])
        for token in sentence:
            #print token
            if len(token[4]) >0:
                if token[1] in ['JJ', 'JJR', 'JJS']:
                    if token[4] in stopwords or token[4][0] in punctuation or token[4][-1] in punctuation or len(token[4])==1:
                        continue
                    descriptives[i].append(token[4])
                elif token[1] in ['NN', 'NNS']:
                    if token[4] in stopwords or token[4][0] in punctuation or token[4][-1] in punctuation or len(token[4])==1:
                        continue
                    nouns[i].append(token[4])
    out=zip(nouns, descriptives)
    nouns2=[]
    descriptives2=[]
    for n,d in out:
        if len(n)!=0 and len(d)!=0:
            nouns2.append(n)
            descriptives2.append(d)
    return nouns2, descriptives2

In [42]:
%%time
# review_parts = maas_IMDB.map(lambda x: get_parts(x.text))
review_parts = []
for index, row in maas_IMDB.iterrows():
    review_parts.append(get_parts(row.text))


---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
<ipython-input-42-0e46d096a063> in <module>()
----> 1 get_ipython().run_cell_magic(u'time', u'', u'# review_parts = maas_IMDB.map(lambda x: get_parts(x.text))\nreview_parts = []\nfor index, row in maas_IMDB.iterrows():\n    review_parts.append(get_parts(row.text))')

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/core/interactiveshell.pyc in run_cell_magic(self, magic_name, line, cell)
   2262             magic_arg_s = self.var_expand(line, stack_depth)
   2263             with self.builtin_trap:
-> 2264                 result = fn(magic_arg_s, cell)
   2265             return result
   2266 

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/core/magics/execution.pyc in time(self, line, cell, local_ns)

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/core/magic.pyc in <lambda>(f, *a, **k)
    191     # but it's overkill for just that one bit of state.
    192     def magic_deco(arg):
--> 193         call = lambda f, *a, **k: f(*a, **k)
    194 
    195         if callable(arg):

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/core/magics/execution.pyc in time(self, line, cell, local_ns)
   1164         else:
   1165             st = clock2()
-> 1166             exec(code, glob, local_ns)
   1167             end = clock2()
   1168             out = None

<timed exec> in <module>()

NameError: name 'maas_IMDB' is not defined

In [157]:
review_parts[1]


Out[157]:
([[u'movie', u'movie'],
  [u'movie', u'rating'],
  [u'movie', u'acting'],
  [u'job'],
  [u'<br', u'day'],
  [u'effect', u'more.<br', u'movie', u'rent']],
 [[u'great'],
  [u'star'],
  [u'superb'],
  [u'better'],
  [u'rainy'],
  [u'acting', u'special']])

2. For the nouns, perform LDA to separate them into 2 topics


In [158]:
ldadata = [ele[0] for ele in review_parts]

In [159]:
ldadata


Out[159]:
[[[u'sure', u'movie', u'time', u'time', u'opinion', u'film', u'change'],
  [u'time', u'movie', u'ooh'],
  [u'time', u'movie', u'thinking', u'd**n', u'ship'],
  [u'time'],
  [u'acting', u'film'],
  [u'oscar', u'film'],
  [u'movie', u'film'],
  [u'film'],
  [u'eye', u'character', u'film'],
  [u'performance', u'hand'],
  [u'director', u'film', u'magnitude'],
  [u'lesson', u'movie', u'love-story', u'filmmaker', u'romance', u'movie'],
  [u'film']],
 [[u'movie', u'movie'],
  [u'movie', u'rating'],
  [u'movie', u'acting'],
  [u'job'],
  [u'<br', u'day'],
  [u'effect', u'more.<br', u'movie', u'rent']],
 [[u'picture'],
  [u'scene', u'dinner', u'table', u'scene', u'family', u'friend'],
  [u'look',
   u'face',
   u'woman',
   u'room',
   u'future',
   u'husband.<br',
   u'connection',
   u'movie',
   u'movie',
   u'stuff'],
  [u'mom', u'associate', u'husband', u'wealth'],
  [u'risk.<br', u'movie'],
  [u'story', u'flow', u'actor']],
 [[u'movie', u'miracle'],
  [u'mountain', u'terrorist'],
  [u'mountain',
   u'place',
   u'action',
   u'movie',
   u'movie',
   u'snow',
   u'ice',
   u'cold',
   u'weather',
   u'man'],
  [u'film'],
  [u'guy', u'star', u'portrait', u'serialkiller', u'medicine'],
  [u'place', u'movie'],
  [u'movie', u'\xe4\xe4li\xf6t', u'collector', u'edition', u'extra']],
 [[u'childhood', u'memory', u'movie', u'touch'],
  [u'scene', u'person', u'villain', u'movie'],
  [u'cop',
   u'clich\xe9s',
   u'script',
   u'hole',
   u'truck',
   u'twist',
   u'story',
   u'run'],
  [u'ass',
   u'cop',
   u'serial',
   u'killer',
   u'gas',
   u'chamber',
   u'minion',
   u'power',
   u'resurrection',
   u'power',
   u'person'],
  [u'mix', u'case.<br', u'trash'],
  [u'memory'],
  [u'kid', u'scene', u'person'],
  [u'kind',
   u'logic',
   u'scenario',
   u'measure',
   u'cross',
   u'action',
   u'flick',
   u'flick'],
  [u'idea', u'lead'],
  [u'best', u'problem', u'guy', u'reviewer'],
  [u'killer', u'doctor', u'day', u'work', u'brain', u'switch-off'],
  [u'beer', u'experience', u'load', u'time', u'movie', u'spin'],
  [u'flick', u'pleasure', u'fan', u'kid']],
 [[u'comedian', u'movie'],
  [u'writer', u'comedy'],
  [u'preview', u'movie'],
  [u'movie'],
  [u'kind', u'stuff', u'person'],
  [u'child', u'child']],
 [[u'premise', u'cast', u'movie'],
  [u'excitement'],
  [u'person', u'lot', u'movie', u'character', u'movie'],
  [u'interaction', u'character', u'comedy', u'drama', u'element'],
  [u'movie', u'actress', u'way', u'scenario', u'riot']],
 [[u'closing', u'stage', u'character', u'outline', u'mess'],
  [u'feature', u'ray', u'hope', u'majority', u'time'],
  [u'cast',
   u'script',
   u'caricature',
   u'character',
   u'noggin',
   u'sense',
   u'humour'],
  [u'clich\xe9',
   u'joke',
   u'couple',
   u'baby',
   u'world',
   u'film',
   u'laugh',
   u'demographic.<br',
   u'story',
   u'love',
   u'plot',
   u'line',
   u'side-story',
   u'sort',
   u'couple',
   u'characterisation',
   u'romance',
   u'bubble'],
  [u'character',
   u'figure',
   u'space',
   u'emptiness',
   u'character',
   u'interaction',
   u'time',
   u'comedy',
   u'branch',
   u'chuckle',
   u'character'],
  [u'work',
   u'persona',
   u'confine',
   u'formula.<br',
   u'business',
   u'woman',
   u'class',
   u'surrogate',
   u'husband',
   u'difference'],
  [u'odd-couple',
   u'premise',
   u'year',
   u'movie',
   u'chemistry',
   u'performer',
   u'character'],
  [u'personality',
   u'outline',
   u'performer',
   u'role',
   u'demand',
   u'chemistry',
   u'air'],
  [u'fact',
   u'movie',
   u'engaging',
   u'performance',
   u'character',
   u'talent',
   u'door-man'],
  [u'time',
   u'moment',
   u'man',
   u'remainder',
   u'thing',
   u'course',
   u'movie',
   u'script',
   u'theme',
   u'way',
   u'world',
   u'camera',
   u'director',
   u'page',
   u'screen'],
  [u'film', u'baby', u'dollar', u'business', u'stereotyping', u'thing'],
  [u'hammy', u'plastic', u'tinsel-town', u'capital', u'bore', u'sugar'],
  [u'character', u'nature', u'world'],
  [u'dialogue',
   u'set',
   u'costume',
   u'script',
   u'theme',
   u'blue',
   u'pink',
   u'shade',
   u'humanity',
   u'director',
   u'need',
   u'movie',
   u'feel',
   u'fantasy',
   u'character',
   u'world'],
  [u'end',
   u'day',
   u'comedy',
   u'gauge',
   u'success',
   u'failure',
   u'chemistry',
   u'love',
   u'frequency',
   u'laugh',
   u'department'],
  [u'course', u'film', u'value'],
  [u'audience', u'boat', u'character', u'kick', u'proceedings'],
  [u'respect',
   u'look',
   u'outside',
   u'audience',
   u'dud',
   u'mismatch',
   u'review']],
 [[u'star', u'dot', u'marker', u'something.<br', u'total', u'scene', u'movie'],
  [u'trafficking', u'stereotype', u'speed', u'soundtrack', u'soundtrack'],
  [u'<br', u'scene', u'kind', u'way'],
  [u'mixture',
   u'ape',
   u'man',
   u'skit',
   u'money',
   u'birth',
   u'parody',
   u'guy',
   u'servant',
   u'man',
   u'role',
   u'human.<br'],
  [u'girl'],
  [u'mom',
   u'half',
   u'men',
   u'movie',
   u'kind',
   u'surgery',
   u'mouth',
   u'mouth',
   u'year',
   u'scene',
   u'face',
   u'mind',
   u'question'],
  [u'surgery'],
  [u'viewer', u'surgery']],
 [[u'time'],
  [u'laugh'],
  [u'movie'],
  [u'scene', u'heartwarming', u'team'],
  [u'movie'],
  [u'ending', u'smile', u'face'],
  [u'dull.<br', u'comedy', u'year'],
  [u'comedy']],
 [[u'president', u'chain', u'health', u'food', u'store'],
  [u'slew', u'work', u'whoring', u'movie'],
  [u'coach', u'lisp'],
  [u'motion', u'minute', u'skit'],
  [u'character'],
  [u'matter', u'attempt', u'laugh']],
 [[u'person',
   u'brain',
   u're-writes."<br',
   u'bastardization',
   u'work',
   u'character'],
  [u'book', u'female', u'protagonist', u'way', u'problem'],
  [u'damsel',
   u'distress',
   u'reference',
   u'law',
   u'afterthought',
   u'action',
   u'scenes.<br',
   u'film',
   u'story']],
 [[u'theathre',
   u'ticket',
   u'hand',
   u'fantasy',
   u'movie',
   u'appetite',
   u'movie',
   u'robot-technology',
   u'aspect',
   u'effect',
   u'plot',
   u'opinion',
   u'year'],
  [u'acting', u'movie', u'movie', u'men', u'success', u'opinion']],
 [[u'feature', u'rendering', u'art', u'direction'],
  [u'product', u'placement', u'disaster', u'performance', u'plot-hole'],
  [u'mixture',
   u'production',
   u'value',
   u'dialogue',
   u'children.<br',
   u'shame',
   u'extent',
   u'director']],
 [[u'action'],
  [u'place', u'mountain', u'scenery'],
  [u'scene', u'film', u'horror'],
  [u'picture']],
 [[u'comment', u'movie', u'kind', u'science', u'fiction', u'movie-goer'],
  [u'history', u'genre', u'height', u'hand', u'author'],
  [u'critic',
   u'story',
   u'ray',
   u'gun',
   u'alien',
   u'pre-pubescent',
   u'teenager'],
  [u'today',
   u'fan',
   u'history',
   u'author',
   u'science',
   u'fiction',
   u'basement'],
  [u'thought', u'provoking', u'story', u'boundary', u'condition'],
  [u'fan'],
  [u'sake', u'eye'],
  [u'record'],
  [u'computer', u'graphic', u'action', u'sequence'],
  [u'emperor',
   u'clothe',
   u'loudest.<br',
   u'type',
   u'science',
   u'fiction',
   u'movie',
   u'goer',
   u'knowledge',
   u'aspect',
   u'genre'],
  [u'plot',
   u'hole',
   u'premise',
   u'story',
   u'line',
   u'dose',
   u'wiz',
   u'bang',
   u'action',
   u'effect'],
  [u'effect', u'thinking', u'skill'],
  [u'story', u'novel', u'humanity', u'creation'],
  [u'<br', u'film', u'plot', u'hole', u'point', u'limit', u'credulity'],
  [u'character', u'character', u'intelligence', u'hallmark', u'story'],
  [u'belief',
   u'humanity',
   u'capacity',
   u'problem',
   u'mind',
   u'fist',
   u'vision',
   u'future'],
  [u'movie'],
  [u'state', u'movie', u'book'],
  [u'work', u'title'],
  [u'question', u'body', u'work', u'title', u'piece', u'crap'],
  [u'fact', u'title', u'moviegoer'],
  [u'light'],
  [u'audience', u'dredge']],
 [[u'robot',
   u'community',
   u'rise',
   u'lot',
   u'insult',
   u'name-calling',
   u'too).<br',
   u'film'],
  [u'population', u'clich\xe9d', u're-heat', u'work'],
  [u'film',
   u'retread',
   u'plot',
   u'line',
   u'mix',
   u'uber-action',
   u'character',
   u'cynic',
   u'backbone',
   u'titanium',
   u'effect',
   u'others).<br',
   u'robot',
   u'action',
   u'movie',
   u'today',
   u'audience',
   u'plot',
   u'dialog',
   u'lot',
   u'lot',
   u'adrenaline'],
  [u'attempt'],
  [u'blockbuster', u'today', u'standard', u'b-movie', u'winner']],
 [[u'film', u'year'],
  [u'plot',
   u'aspect',
   u'copy',
   u'matrix',
   u'plenty',
   u'clich\xe9',
   u'wolf',
   u'cop',
   u'gun',
   u'worker',
   u'shy',
   u'she-scientist',
   u'cent',
   u'plot',
   u'robot'],
  [u'advertising',
   u'brand',
   u'movie',
   u'commercialization',
   u'ad',
   u'spot',
   u'sec'],
  [u'enemy', u'time', u'tv', u'program', u'book']],
 [[u'spite',
   u'future-design',
   u'touch',
   u'premise',
   u'cool',
   u'performance',
   u'movie',
   u'expectation'],
  [u'nightmare',
   u'maverick',
   u'cop',
   u'badge',
   u'hardass',
   u'lieutenant',
   u'list',
   u'end',
   u'mile'],
  [u'movie', u'disaster'],
  [u'robot', u'crowd', u'scene'],
  [u'movie', u'question', u'start', u'climax'],
  [u'sum', u'plot', u'action', u'film', u'year']],
 [[u'film', u'culmination', u'film'],
  [u'motion', u'flipping', u'character', u'dialogue', u'unnecessity'],
  [u'car',
   u'garage',
   u'skin',
   u'spray',
   u'tool',
   u'combination',
   u'function',
   u'card',
   u'swipe',
   u'coffee',
   u'shop.<br',
   u'respect',
   u'woman'],
  [u'character', u'doctor', u'film'],
  [u'look', u'admiration', u'ground)<br', u'detective'],
  [u'feel', u'sorry', u'person', u'thought'],
  [u'way', u'story', u'point', u'b-c-d-etc', u'time', u'row'],
  [u'scene?)<br', u'movie', u'tool', u'rescue', u'scene'],
  [u'bike',
   u'air',
   u'doctor',
   u'distance',
   u'matter',
   u'second',
   u'foot.<br',
   u'spectacle'],
  [u'shred', u'realism', u'meaning.<br', u'film', u'time'],
  [u'<br',
   u'swing',
   u'pendulum',
   u'technique',
   u'story',
   u'film',
   u'techniques.<br',
   u'film']],
 [[u'movie'],
  [u'rival', u'number', u'moment'],
  [u'couple', u'line', u'film', u'crap'],
  [u'weekend', u'resort'],
  [u'sideline']],
 [[u'wife', u'it.<br', u'spades.<br', u'character', u'film'],
  [u'sure', u'couple', u'joke', u'character', u'space.<br'],
  [u'past', u'lady'],
  [u'flick'],
  [u'wife', u'thing'],
  [u'character.<br', u'night', u'laugh', u'value'],
  [u'comedy', u'film']],
 [[u'movie'], [u'storyline'], [u'joke'], [u'movie']],
 [[u'role']],
 [[u'film', u'dissapointment'],
  [u'talent',
   u'director',
   u'lead',
   u'story',
   u'conclusion',
   u'dire',
   u'character'],
  [u'role',
   u'fidelity',
   u'humour',
   u'hyper-active',
   u'alter-ego',
   u'project.<br',
   u'comedy',
   u'romance',
   u'character',
   u'chemistry',
   u'comedy',
   u'moment',
   u'humour',
   u'role',
   u'relationship',
   u'scriptwriter',
   u'originality'],
  [u'lover',
   u'turn',
   u'parody',
   u'type',
   u'director',
   u'screen',
   u'time',
   u'groin',
   u'dog'],
  [u'genius.<br',
   u'fan',
   u'majority',
   u'work',
   u'rest',
   u'cast',
   u'film',
   u'plenty',
   u'idea',
   u'time',
   u'genre',
   u'clich',
   u'depth',
   u'gross-out',
   u'teen-movie',
   u'humour',
   u'times.<br']],
 [[u'movie',
   u'set',
   u'action',
   u'movie',
   u'regard',
   u'movie',
   u'cinematography',
   u'mountain',
   u'snow',
   u'heights,a',
   u'performance',
   u'performance',
   u'villain',
   u'shock',
   u'evil',
   u'movie',
   u'time',
   u'becouse',
   u'screen',
   u'plot',
   u'story',
   u'movie',
   u'human,much',
   u'movie',
   u'character',
   u'plot',
   u'excitement',
   u'dialogue',
   u'script',
   u'point',
   u'shooting',
   u'movie',
   u'maker',
   u'shooting',
   u'hit',
   u'quality',
   u'scene',
   u'shooting',
   u'sequence',
   u'plane',
   u'hijacking',
   u'water',
   u'lot',
   u'shooting',
   u'sequence',
   u'tv',
   u'series',
   u'villain',
   u'set',
   u'foot',
   u'mountain',
   u'movie',
   u'lot',
   u'time',
   u'potential.crisper',
   u'action',
   u'dialogue',
   u'style',
   u'emotion',
   u'movie',
   u'level.i',
   u'fault.i',
   u'sense',
   u'movie',
   u'director',
   u'tone',
   u'character',
   u'try',
   u'movie',
   u'credit',
   u'direction',
   u'movie']],
 [],
 [[u'comedy'],
  [u'shambles'],
  [u'person', u'today', u'audience', u'muck'],
  [u'plot', u'razor'],
  [u'chemistry', u'character'],
  [u'reincarnation', u'star', u'age']],
 [[u'scene',
   u'laugh',
   u'walken',
   u'rest',
   u'movie',
   u'hour',
   u'zeta',
   u'jone',
   u'dougla',
   u'robert',
   u'job',
   u'duck'],
  [u'guy.for',
   u'short.i',
   u'characters.if',
   u'cusack',
   u'building',
   u'suicide',
   u'movie']],
 [[u'lot', u'movie', u'actor'],
  [u'movie'],
  [u'person'],
  [u'idea'],
  [u'thing']],
 [[u'it.<br'], [u'purpose'], [u'romance']],
 [[u'cast'],
  [u'bunch', u'thespian', u'tapestry', u'wonder', u'script'],
  [u'sweetheart', u'opportunity'],
  [u'hit'],
  [u'potential'],
  [u'aspect', u'thing'],
  [u'suit']],
 [[u'film', u'star'],
  [u'clich\xe9', u'film', u'actor'],
  [u'surprise', u'list', u'star', u'film'],
  [u'star', u'buck', u'film'],
  [u'rest', u'star', u'motion'],
  [u'fall', u'cast']],
 [[u'actress', u'work', u'standard'],
  [u'movie', u'direction'],
  [u'eye',
   u'sign',
   u'bewilderment',
   u'despair.<br',
   u'thing',
   u'idea',
   u'director',
   u'movie',
   u'documentary',
   u'actor'],
  [u'star', u'experience'],
  [u'movie']],
 [[u'light'],
  [u'film',
   u'feature',
   u'star',
   u'half',
   u'joke',
   u'that.<br',
   u'stinker',
   u'couple',
   u'bit'],
  [u'comedy'],
  [u'dialogue', u'way', u'premise'],
  [u'movie', u'focus', u'way', u'film', u'phony', u'critic'],
  [u'film',
   u'territory',
   u'press',
   u'junket',
   u'expense',
   u'trip',
   u'journalist',
   u'reviews'],
  [u'motherlode',
   u'joke',
   u'minute',
   u'territory',
   u'pursuit',
   u'film',
   u'romance.<br',
   u'character',
   u'whinny',
   u'self',
   u'movie',
   u'star'],
  [u'zeta-jone', u'job'],
  [u'junk',
   u'pale',
   u'comparison',
   u'thing',
   u'star',
   u'years.<br',
   u'end',
   u'zeta-jone',
   u'sign',
   u'ship',
   u'rerun'],
  [u'fact', u'joke', u'script', u'deal'],
  [u'story']],
 [[u'movie', u'time'], [u'idea', u'cash', u'masterpiece']],
 [[u'movie',
   u'nerve',
   u'movie!stallone',
   u'always!michael',
   u'performance',
   u'villain!the',
   u'music',
   u'movie',
   u'action',
   u'fan',
   u'watch']],
 [[u'tell', u'shaq', u'basketball'],
  [u'movie', u'level'],
  [u'movie',
   u'shaq',
   u'genie',
   u'boom',
   u'box',
   u'genie',
   u'boom',
   u'box',
   u'lamp'],
  [u'boy', u'francais', u'cappra'],
  [u'movie', u'storyline', u'water', u'world', u'acting', u'flim']],
 [[u'film',
   u'cinema',
   u'movie',
   u'crisis.there',
   u'reason',
   u'movie',
   u'fact',
   u'somebody',
   u'success',
   u'plot',
   u'bit',
   u'screen',
   u'actor']],
 [[u'genie',
   u'line',
   u'kid',
   u'cryin',
   u'dad',
   u'actin',
   u'casting',
   u'effect'],
  [u'movie',
   u'buck',
   u'boombox',
   u'lamp',
   u'cramp',
   u'food',
   u'genie',
   u'movie',
   u'effect'],
  [u'let', u'category'],
  [u'watch', u'buddy', u'laugh']],
 [[u'movie', u'kid', u'movie', u'humanity'],
  [u'rapping',
   u'genie',
   u'rapping',
   u'genie',
   u'pun',
   u'dressing',
   u'outfits',
   u'pose',
   u'lot',
   u'light'],
  [u'bit', u'wish', u'lot', u'junk', u'food', u'sky', u'character', u'kid'],
  [u'plot',
   u'film',
   u'kid',
   u'fashion',
   u'great-grandson',
   u'kid',
   u'dialog',
   u'genie',
   u'boom-box'],
  [u'hiarity',
   u'kid',
   u'quasi-slave',
   u'wish',
   u'amend',
   u'shady-gang-type',
   u'father.<br',
   u'son',
   u'father',
   u'story',
   u'line',
   u'movie',
   u'chance',
   u'life',
   u'speech',
   u'father',
   u'son'],
  [u'reason', u'film', u'crux'],
  [u'plot',
   u'line',
   u'treatment',
   u'rap',
   u'dialog',
   u'blossoming',
   u'career'],
  [u'ass', u'guy', u'boom-box'],
  [u'point',
   u'scene',
   u'heart-felt',
   u'moment',
   u'business',
   u'rest',
   u'material'],
  [u'person', u'movie', u'behest', u'popularity', u'player', u'bandwagon'],
  [u'afterword',
   u'fun',
   u'night',
   u'genie-turned-rapper-turned-wisecracker',
   u'fun'],
  [u'movie', u'night', u'effort'],
  [u'brain', u'cell', u'flick', u'candidate']],
 [[u'movie', u'angel', u'wing'],
  [u'crossover',
   u'effort',
   u'work',
   u'plethora',
   u'rap',
   u'album',
   u'epic',
   u'thing',
   u'movie'],
  [u'bunch', u'time', u'movie', u'film', u'tear'],
  [u'fun'],
  [u'thrill',
   u'terribleness.<br',
   u'tv',
   u'film',
   u'scene',
   u'shaq',
   u'genie',
   u'power'],
  [u'disturbing.<br', u'example', u'film'],
  [u'movie']],
 [[u'story'], [u'movie', u'ghetto'], [u'movie']],
 [[u'movie', u'reviews', u'hmm'],
  [u'thought'],
  [u'mind', u'hope', u'kind', u'way'],
  [u'point', u'suffering', u'film', u'term'],
  [u'rap', u'music', u'priest', u'rapper'],
  [u'character', u'character'],
  [u'turd', u'fetus', u'sore', u'watch']],
 [[u'summery', u'film', u'kid', u'radio', u'rapping', u'genie'],
  [u'geny', u'grant', u'wish', u'life', u'father', u'crime'],
  [u'time', u'time', u'rap', u'skills).<br', u'movie', u'athlete', u'sport'],
  [u'movie', u'waste', u'film'],
  [u'character', u'plot', u'dialog', u'joke', u'quarter', u'problem'],
  [u'movie', u'pun', u'time'],
  [u'thing', u'waste', u'time'],
  [u'time', u'movie']],
 [[u'movie',
   u'wasting',
   u'hour',
   u'minute',
   u'life',
   u'summary',
   u'ghetto',
   u'boom',
   u'box',
   u'kid',
   u'hair',
   u'wish',
   u'kid',
   u'wish',
   u'shaq',
   u'rapping',
   u'guess',
   u'it.<br',
   u'shear',
   u'comedy',
   u'skill',
   u'nba',
   u'player',
   u'boy',
   u'hair.<br',
   u'movie',
   u'college',
   u'kid',
   u'beer',
   u'friend',
   u'need',
   u'laugh.<br',
   u'movie',
   u'wishes.<br',
   u'movie',
   u'waste',
   u'money']],
 [[u'movie', u'critic', u'time', u'film', u'film', u'decade'],
  [u'fact', u'surprise'],
  [u'thing'],
  [u'brain', u'film'],
  [u'movie',
   u'baseball',
   u'chimp',
   u'ever-popular',
   u'troll',
   u'superhero',
   u'baby'],
  [u'idea', u'matter', u'screen'],
  [u'idea', u'basketball', u'player', u'time', u'genie', u'brat'],
  [u'<br', u'film', u'kid', u'locker', u'hallway', u'school'],
  [u'punk', u'kid', u'word', u'brat', u'matter', u'end', u'film'],
  [u'punk', u'kid', u'end', u'prison', u'end', u'film'],
  [u'neighborhood', u'middle', u'pummeling', u'genie', u'brat', u'wish'],
  [u'kid', u'genie', u'magic', u'tad', u'rusty.<br', u'brat'],
  [u'kid', u'wish', u'meantime', u'servant'],
  [u'clich\xe9', u'end', u'film', u'buddy', u'bunch', u'tear'],
  [u'term', u'father', u'mom', u'gag'],
  [u'genie',
   u'bit',
   u'worker',
   u'addition',
   u'granter',
   u'wishes.<br',
   u'rhyme',
   u'movie',
   u'rap'],
  [u'guy', u'rap'],
  [u'basketball', u'player', u'guy', u'way'],
  [u'acting', u'personality', u'film', u'lot', u'things.<br', u'movie'],
  [u'kid', u'script'],
  [u'film', u'kid'],
  [u'plot', u'guy', u'rap', u'star'],
  [u'mobster'],
  [u'kid', u'kid', u'film'],
  [u'kid', u'film', u'history', u'god', u'hallucination'],
  [u'weirder', u'boy', u'brain'],
  [u'dialog', u'film', u'writer'],
  [u'folk', u'message', u'non-kid', u'material', u'character', u'film'],
  [u'idea',
   u'actor',
   u'product',
   u'worse!!<br',
   u'way',
   u'world',
   u'film',
   u'tv',
   u'film',
   u'film',
   u'start']],
 [[u'mountain',
   u'climber',
   u'friend',
   u'hostage',
   u'mercenary',
   u'suitcase',
   u'money',
   u'dollar'],
  [u'action', u'sequence', u'edge', u'seat', u'fun', u'time', u'movie']],
 [[u'outfit'],
  [u'year', u'son', u'screen', u'rapping', u'wish', u'tooth'],
  [u'terribleness', u'story', u'hole', u'quicksand', u'tar', u'pit'],
  [u'laugh']],
 [[u'fan', u'movie', u'acting'],
  [u'player', u'movie'],
  [u'actor', u'movie'],
  [u'way', u'movie', u'kid'],
  [u'zero']],
 [[u'movie', u'basket-ball', u'player'],
  [u'rapping'],
  [u'movie'],
  [u'kid'],
  [u'genie', u'career', u'music', u'industry', u'power', u'music'],
  [u'deal', u'effect'],
  [u'teenager', u'computer', u'effect'],
  [u'nightmare', u'plane', u'movie', u'word', u'level']],
 [[u'book',
   u'version',
   u'birthday',
   u'person',
   u'book',
   u'version',
   u'movie',
   u'time'],
  [u'movie',
   u'soon.<br',
   u'film',
   u'rapping',
   u'genie',
   u'ghetto',
   u'blaster',
   u'reason'],
  [u'kid', u'film', u'actor'],
  [u'neighborhood', u'kid', u'douche', u'bag.<br', u'story'],
  [u'boy',
   u'father',
   u'working',
   u'friend',
   u'life',
   u'father.<br',
   u'year',
   u'idea']],
 [[u'film', u'seen.i', u'film', u'friend', u'minute'],
  [u'plot', u'character.i', u'entertainment'],
  [u'movie', u'scale', u'number']],
 [[u'thing', u'movie', u'scene', u'number', u'character', u'genie', u'movie'],
  [u'story', u'acting'],
  [u'movie']],
 [[u'movie'], [u'basketball']],
 [[u'movie.<br', u'waste', u'time'],
  [u'shame',
   u'person',
   u'community',
   u'theatre',
   u'bar',
   u'basketball',
   u'player',
   u'movie',
   u'cut',
   u'failure',
   u'movie',
   u'no-talent']],
 [[u'film', u'time', u'movie'],
  [u'attempt', u'movie', u'time'],
  [u'director', u'issue', u'film'],
  [u'director', u'chair', u'filmmaker', u'scene'],
  [u'film', u'filmmaker'],
  [u'scene', u'character', u'singing', u'moment', u'cinema', u'history']],
 [[u'film', u'writer', u'delusion', u'grandeur'],
  [u'material', u'elephant'],
  [u'couple', u'detour', u'way', u'interlude', u'plague', u'matter'],
  [u'level', u'performance'],
  [u'character', u'storyline', u'angst'],
  [u'time', u'shtick', u'hour'],
  [u'comparison', u'misogynist'],
  [u'speaking', u'mouth', u'script', u'bomb', u'impact', u'time'],
  [u'soundtrack', u'vocal'],
  [u'rendition', u'number', u'distraction', u'start', u'film'],
  [u'feature',
   u'reviews',
   u'performance',
   u'bunch',
   u'unknown',
   u'role',
   u'claudia',
   u'coke',
   u'fiend',
   u'bent',
   u'self-destruction']],
 [[u'accident', u'climber', u'michelle', u'joyner'],
  [u'month', u'distress', u'set', u'terrorist', u'mastermind'],
  [u'case', u'million', u'dollar'],
  [u'climber', u'helicopter', u'pilot', u'rescue', u'trap', u'man'],
  [u'climber', u'pilot', u'game'],
  [u'money'],
  [u'firepower', u'cold', u'height'],
  [u'survival.<br', u'action', u'picture'],
  [u'film', u'action', u'picture', u'plenty', u'humour'],
  [u'hit'],
  [u'film'],
  [u'entertaining', u'villain'],
  [u'comeback', u'thriller'],
  [u'work', u'filmmaker.<br', u'anamorphic', u'transfer', u'terrific-dolby'],
  [u'crew', u'commentary'],
  [u'action', u'film'],
  [u'screenplay', u'actor:stallone'],
  [u'cinematography'],
  [u'sound', u'editing']],
 [[u'verdict', u'film', u'bulk'],
  [u'total',
   u'philistine',
   u'movie',
   u'police',
   u'academy',
   u'share',
   u'brow',
   u'stuff'],
  [u'self', u'rambling', u'nonsense', u'start', u'person', u'movie'],
  [u'calibre', u'actor', u'average', u'performance'],
  [u'plot',
   u'story',
   u'character',
   u'snail',
   u'pace',
   u'life',
   u'event',
   u'something.<br',
   u'character',
   u'person'],
  [u'play',
   u'life',
   u'story',
   u'length',
   u'character',
   u'flaw',
   u'emotion',
   u'relationship',
   u'degree',
   u'soliloquy',
   u'route'],
  [u'soundtrack',
   u'dire',
   u'quality',
   u'music',
   u'hour',
   u'episode',
   u'rib',
   u'nanny',
   u'goat'],
  [u'bit', u'frog']],
 [[u'magnolia',
   u'wall',
   u'wall',
   u'canvas',
   u'shrieking',
   u'twit',
   u'regret',
   u'guilt',
   u'pain'],
  [u'filmmaker', u'writing', u'ball', u'mess.<br', u'cast', u'performance'],
  [u'scene',
   u'match',
   u'digression',
   u'sin',
   u'pain',
   u'story',
   u'tableaus',
   u'film'],
  [u'sequence',
   u'fate',
   u'person',
   u'circumstance',
   u'believer',
   u'puppeteer',
   u'string'],
  [u'story', u'stuff', u'fable', u'display'],
  [u'form',
   u'convergence',
   u'wave',
   u'regret',
   u'character',
   u'spread',
   u'absolution'],
  [u'field', u'plague', u'end', u'cadre', u'devotee', u'genius', u'music'],
  [u'movie', u'music', u'actor']],
 [[u'history', u'year', u'movie', u'critic', u'public'],
  [u'movie', u'year'],
  [u'self-indulgence', u'acting'],
  [u'film']],
 [[u'let', u'storm'], [u'word', u'time'], [u'rest', u'failure']],
 [[u'problem', u'swearing', u'film'],
  [u'cancer', u'rambling'],
  [u'<br', u'film', u'person', u'life']],
 [[u'lives', u'end', u'turn', u'movie'],
  [u'end', u'hour'],
  [u'kick', u'pant', u'frog', u'scene'],
  [u'movie', u'movie']],
 [[u'minute'],
  [u'story', u'hill'],
  [u'acting', u'film'],
  [u'moment', u'story', u'connect', u'rain', u'frog'],
  [u'movie', u'movie', u'boring']],
 [[u'cast'],
  [u'story', u'line', u'half<br'],
  [u'to<br', u'character', u'their<br', u'life'],
  [u'writer',
   u'glue',
   u'player',
   u'they<br',
   u'glue',
   u'movie',
   u'standstill<br',
   u'hour'],
  [u'<br'],
  [u'plot', u'member']],
 [[u'magnolium', u'showcase'],
  [u'magnolium', u'series', u'episode', u'concern', u'coherence'],
  [u'camera', u'swoops', u'hallway', u'corridor', u'glimpse', u'character'],
  [u'theme', u'person', u'yell', u'lot', u'character', u'jerk', u'piece'],
  [u'monster', u'father'],
  [u'character', u'time', u'them?<br'],
  [u'idea', u'bomb'],
  [u'hour', u'film'],
  [u'string'],
  [u'idea', u'lot', u'acting'],
  [u'cop', u'memory'],
  [u'event', u'girl', u'theatre']],
 [[u'movie'],
  [u'character', u'bit', u'plot'],
  [u'life', u'character', u'half', u'hour', u'finish'],
  [u'reference',
   u'theme',
   u'resolution',
   u'portion',
   u'population',
   u'portion'],
  [u'person',
   u'movie',
   u'self',
   u'imitation',
   u'seinfeld',
   u'episode.<br',
   u'time'],
  [u'reading', u'<br']],
 [[u'success',
   u'sequel',
   u'surprise',
   u'glut',
   u'movie',
   u'guy',
   u'place',
   u'time',
   u'concept'],
  [u'mountain',
   u'time',
   u'mom',
   u'career.<br',
   u'nit-picker',
   u'dream',
   u'expert',
   u'mountain',
   u'base-jumping',
   u'aviation',
   u'expression',
   u'skill'],
  [u'excuse', u'film', u'pile', u'junk'],
  [u'nonsense',
   u'romp',
   u'plenty',
   u'thrill',
   u'plenty',
   u'laughs.<br',
   u'sneery',
   u'evilness',
   u'tick',
   u'box',
   u'band',
   u'baddy',
   u'turncoat',
   u'agent',
   u'portrait',
   u'performance',
   u'shrieking',
   u'disbelief',
   u'captor',
   u'man',
   u'anybody',
   u'character',
   u'girl',
   u'plummet',
   u'actor',
   u'guy',
   u'cropper',
   u'bit',
   u'kicking.<br',
   u'judgement',
   u'expectation',
   u'volume',
   u'enjoy']],
 [[u'minute', u'art', u'film', u'person', u'baying', u'half-ass-ed', u'blood'],
  [u'art', u'house', u'cinema', u'unknown', u'cult'],
  [u'explain',
   u'point',
   u'purpose',
   u'message',
   u'film.<br',
   u'film',
   u'montage',
   u'legend',
   u'level',
   u'co-incidence'],
  [u'nutshell',
   u'hour',
   u'pain',
   u'child',
   u'game',
   u'host',
   u'lung',
   u'cancer',
   u'thing',
   u'daughter',
   u'child',
   u'police',
   u'officer',
   u'relationship',
   u'issue',
   u'star',
   u'contestant',
   u'child',
   u'prodigy',
   u'fate',
   u'game',
   u'contestant',
   u'homosexual',
   u'love',
   u'bartender',
   u'brace',
   u'need',
   u'money',
   u'surgery',
   u'game',
   u'producer',
   u'lung',
   u'cancer',
   u'male',
   u'nurse',
   u'son',
   u'year',
   u'self',
   u'help',
   u'guru',
   u'producer',
   u'wife',
   u'guilt',
   u'pang',
   u'man',
   u'rain',
   u'frog'],
  [u'rambling',
   u'monologue',
   u'character',
   u'fly',
   u'rhyme',
   u'reason',
   u'film',
   u'hour',
   u'epic'],
  [u'<br', u'job', u'movie', u'turn', u'thing', u'sentence']],
 [[u'world', u'person'],
  [u'person'],
  [u'intelligence', u'cat'],
  [u'film'],
  [u'film', u'crap']],
 [[u'comedian', u'cause', u'movement', u'facial', u'performance', u'human'],
  [u'loser', u'hero', u'day', u'man', u'case', u'man'],
  [u'day', u'life', u'instinct'],
  [u'course', u'female', u'character', u'trying'],
  [u'character'],
  [u'character', u'destiny', u'metaphor'],
  [u'instinct', u'situation'],
  [u'performance'],
  [u'movie', u'moment', u'movie', u'fun'],
  [u'monkey', u'style', u'comedy', u'movie'],
  [u'comedian', u'movie']],
 [[u'movie', u'laugh'],
  [u'movie',
   u'moment',
   u'humour',
   u'joke',
   u'shame',
   u'age',
   u'group',
   u'movie',
   u'viewer',
   u'boundary']],
 [[u'girl', u'guy'], [u'movie'], [u'joke']],
 [[u'comedy\x85.man', u'life', u'organ'],
  [u'sore', u'leg', u'makeup', u'face']],
 [[u'movie'],
  [u'flick', u'placement', u'pg-13', u'kid'],
  [u'joke', u'joke', u'act', u'boundary', u'taste', u'decency'],
  [u'scene', u'pg-13', u'rating', u'splash', u'film'],
  [u'waste', u'time', u'movie', u'lover', u'shot'],
  [u'minute', u'movie', u'boy'],
  [u'rest', u'quagmire', u'trap', u'rental'],
  [u'star', u'freebie', u'greenback', u'tripe']],
 [[u'movie'],
  [u'premise', u'libido', u'randy', u'laugh'],
  [u'movie'],
  [u'example',
   u'character',
   u'pass',
   u'goat',
   u'heat',
   u'middle',
   u'farmer',
   u'yard',
   u'border',
   u'obscenity'],
  [u'bestiality', u'film', u'level', u'dog'],
  [u'character', u'everytime'],
  [u'cliche.<br', u'role'],
  [u'actor', u'material', u'quality'],
  [u'half', u'lead', u'count', u'number', u'animal', u'character', u'lead'],
  [u'<br', u'film', u'material']],
 [[u'movie'],
  [u'joke'],
  [u'movie'],
  [u'line', u'time', u'movie'],
  [u'way', u'end'],
  [u'theater',
   u'movie',
   u'forever.<br',
   u'writer',
   u'co-producer',
   u'film',
   u'tv',
   u'writer',
   u'movie']],
 [[u'interview', u'character', u'film'],
  [u'comedy', u'volume', u'movie'],
  [u'thing',
   u'thought',
   u'disaster',
   u'disappointment',
   u'performance',
   u'story',
   u'mange',
   u'loser',
   u'cop',
   u'bunch',
   u'transplant',
   u'car',
   u'accident',
   u'scientist',
   u'type',
   u'result',
   u'control',
   u'instinct'],
  [u'course', u'habit', u'eating', u'person', u'cow', u'goat', u'price'],
  [u'actor'],
  [u'commander',
   u'polouse',
   u'character',
   u'doctor',
   u'character',
   u'tv',
   u'series',
   u'scrub'],
  [u'look', u'job', u'movie'],
  [u'course', u'fame', u'contestant', u'survivor', u'button'],
  [u'talent', u'actress'],
  [u'guy'],
  [u'cameo',
   u'end',
   u'producer',
   u'this.)<br',
   u'mange',
   u'toy',
   u'police',
   u'car',
   u'scene',
   u'talent']],
 [[u'credibility',
   u'action',
   u'movie',
   u'superhero',
   u'string',
   u'feat',
   u'process',
   u'lightning',
   u'speed',
   u'gadget',
   u'weapon',
   u'exception'],
  [u'movie',
   u'asset',
   u'scenery',
   u'effect',
   u'minute',
   u'tone',
   u'film',
   u'score',
   u'attempt',
   u'levity',
   u'tension',
   u'cast',
   u'hero',
   u'star',
   u'cowriter',
   u'lion',
   u'share',
   u'footage',
   u'ground',
   u'heroin',
   u'bunch',
   u'villain',
   u'entertainment',
   u'credibility.as',
   u'film',
   u'kind',
   u'movie',
   u'enjoy',
   u'mistake']],
 [[u'movie', u'sex', u'joke', u'racism', u'humor', u'money'],
  [u'hour', u'drink', u'carton', u'milk'],
  [u'movie']],
 [[u'case'],
  [u'individual', u'acting', u'fine', u'waste'],
  [u'kind', u'way'],
  [u'thing',
   u'attention',
   u'ordeal',
   u'joke',
   u'female',
   u'movie',
   u'case',
   u'nook',
   u'case',
   u'redemption'],
  [u'couple',
   u'notch',
   u'movie!<br',
   u'money',
   u'this.<br',
   u'purchase',
   u'no!<br',
   u'sense',
   u'humor']],
 [[u'ingredient', u'cop', u'dream'],
  [u'luck', u'change', u'car', u'crush(a', u'doctor'],
  [u'doctor', u'organ'],
  [u'moment', u'behaviour', u'cop'],
  [u'time', u'change', u'instinct'],
  [u'time', u'girl', u'try', u'gentleman'],
  [u'fun'],
  [u'person', u'loser.(see', u'movie', u'goat'],
  [u'movie', u'problem', u'script', u'viewer', u'feel'],
  [u'movie'],
  [u'film', u'box', u'office'],
  [u'animal', u'film', u'date']],
 [[u'schmo', u'life', u'life', u'lesson', u'way'],
  [u'formula'],
  [u'way', u'film'],
  [u'hit', u'liar', u'liar'],
  [u'line', u'male', u'animal'],
  [u'plot',
   u'sarcasm',
   u'cop',
   u'accident',
   u'surgery',
   u'veterinarian',
   u'load',
   u'whinny',
   u'horse',
   u'time',
   u'cheetah',
   u'movie',
   u'schneider-starring',
   u'flick',
   u'same-plot',
   u'follow-up',
   u'chick',
   u'audience',
   u'reality',
   u'tv',
   u'star',
   u'lead',
   u'survivor',
   u'cameo'],
  [u'scene'],
  [u'production', u'value'],
  [u'review', u'reference', u'movie', u'movie', u'line', u'way']],
 [[u'film',
   u'housewife',
   u'kerchief',
   u'housedress',
   u'mule',
   u'afternoon',
   u'couch',
   u'eating',
   u'bonbon'],
  [u'fact',
   u'bonbon',
   u'role',
   u'movie.<br',
   u'reason',
   u'end',
   u'gaze',
   u'face',
   u'scene'],
  [u'film', u'look'],
  [u'action', u'hand', u'emotionality'],
  [u'<br', u'dialog', u'wood'],
  [u'bodice', u'hero'],
  [u'family', u'cliche', u'hill'],
  [u'story.<br', u'title', u'movie'],
  [u'grape', u'paragon', u'food', u'ad'],
  [u'art',
   u'director',
   u'paint',
   u'dollar',
   u'canvase',
   u'cottage',
   u'fuchsias'],
  [u'film', u'glass'],
  [u'sky', u'film'],
  [u'bonbon']],
 [[u'film',
   u'depth',
   u'term',
   u'story',
   u'telling.<br',
   u'story',
   u'event',
   u'action',
   u'suspense.<br',
   u'lead',
   u'scope',
   u'flex',
   u'muscle',
   u'cast.<br',
   u'story',
   u'title',
   u'character',
   u'film',
   u'injustice',
   u'impact',
   u'motivation',
   u'welfare.<br',
   u'attempt',
   u'emotion',
   u'boy',
   u'outside',
   u'hero',
   u'film']],
 [[u'movie', u'story.<br', u'notorius', u'liar', u'murder'],
  [u'offer', u'lie', u'test'],
  [u'lot', u'person', u'life', u'prison', u'black'],
  [u'story?<br']],
 [[u'year',
   u'movie',
   u'box',
   u'movie',
   u'alot',
   u'respect',
   u'movie',
   u'song']],
 [[u'thing', u'movie.<br', u'stage', u'movie'],
  [u'dramatization',
   u'suspension',
   u'disbelieve.<br',
   u'course',
   u'injustice',
   u'anger',
   u'movie',
   u'viewer']],
 [[u'movie', u'hype', u'person', u'job'],
  [u'person', u'anger', u'community'],
  [u'complaint', u'american'],
  [u'best', u'actress', u'movie', u'best', u'picture'],
  [u'reason',
   u'movie',
   u'way',
   u'person',
   u'movie',
   u'hardship',
   u'time',
   u'period',
   u'masterpiece.<br',
   u'actor',
   u'role',
   u'movie'],
  [u'movie', u'acting', u'role'],
  [u'movie',
   u'man',
   u'saint',
   u'infidelity',
   u'wife',
   u'aggression',
   u'man',
   u'wife',
   u'point',
   u'view'],
  [u'movie', u'interpretation', u'story'],
  [u'past', u'bit', u'assumption', u'man'],
  [u'fact', u'movie'],
  [u'cast',
   u'person',
   u'face',
   u'persona',
   u'up.<br',
   u'movie',
   u'version',
   u'story'],
  [u'acting', u'cast', u'attitude']],
 [[u'selection', u'protagonist', u'sort', u'person', u'aura', u'character'],
  [u'series',
   u'notion.<br',
   u'opening',
   u'scene',
   u'audience',
   u'thrill',
   u'suspense',
   u'intrigue',
   u'encounter',
   u'outlaw'],
  [u'heist',
   u'altitude',
   u'transfer',
   u'cash',
   u'suit',
   u'case',
   u'plane',
   u'before.<br',
   u'cold',
   u'snow',
   u'deceit',
   u'treachery',
   u'antagonist',
   u'force',
   u'shiver',
   u'trepidation'],
  [u'force',
   u'adventure',
   u'murder',
   u'drama',
   u'end.<br',
   u'movie',
   u'year',
   u'person',
   u'feast',
   u'eye'],
  [u'language', u'excitement', u'scene', u'movie', u'appeal', u'year']],
 [[u'movie', u'character', u'movie'],
  [u'fact',
   u'number',
   u'contender',
   u'time',
   u'murder',
   u'proof',
   u'friend',
   u'child',
   u'molester',
   u'youth',
   u'fact',
   u'decision',
   u'judge',
   u'fight',
   u'tape'],
  [u'need', u'hero', u'trouble', u'trouble', u'person', u'time', u'woman'],
  [u'need', u'hero', u'truth', u'bio', u'pic'],
  [u'inaccuracy', u'movie']],
 [[u'movie',
   u'humor',
   u'story',
   u'underdog',
   u'character',
   u'loudmouth',
   u'thing',
   u'movie',
   u'title',
   u'anybody',
   u'racist',
   u'pc',
   u'police'],
  [u'<br',
   u'guy',
   u'basketball',
   u'player',
   u'counterpart',
   u'lot',
   u'line',
   u'humor'],
  [u'film', u'lot', u'person', u'profanity', u'sleaziness', u'character'],
  [u'person', u'movie'],
  [u'reason', u'film', u'friend', u'profanity']],
 [[u'lot', u'room', u'comedy', u'story'],
  [u'event', u'place', u'minute', u'attempt', u'film'],
  [u'movie', u'second'],
  [u'character', u'movie'],
  [u'performance', u'conclusion', u'country', u'hick'],
  [u'acting', u'movie'],
  [u'actor', u'film'],
  [u'movie',
   u'reason',
   u'work',
   u'career',
   u'character',
   u'speaking',
   u'line'],
  [u'jump', u'character', u'line', u'audience', u'voice'],
  [u'film', u'term', u'hearing', u'man']],
 [[u'movie',
   u'highlight',
   u'moment',
   u'jeopardy!".<br',
   u'saddest',
   u'thing',
   u'jump',
   u'potential'],
  [u'year', u'area', u'film', u'tension', u'basketball', u'meant'],
  [u'film',
   u'member',
   u'basketball',
   u'culture',
   u'acting',
   u'script',
   u'movie',
   u'sequence',
   u'event'],
  [u'story',
   u'climax',
   u'kind',
   u'climax',
   u'sequence',
   u'repetition',
   u'case',
   u'win',
   u'money',
   u'game',
   u'basketball").<br',
   u'order',
   u'plot',
   u'dilemma',
   u'dilemma',
   u'film'],
  [u'change', u'pace', u'sport', u'movie'],
  [u'money', u'rent', u'apartment.<br', u'jump', u'film'],
  [u'sport', u'fan', u'writing', u'scene', u'basketball'],
  [u'role'],
  [u'cast', u'actor', u'basketball', u'theme', u'movie'],
  [u'so.<br', u'movie', u'star', u'star']],
 [[u'film'],
  [u'collection', u'clich', u'time'],
  [u'theatre', u'minute', u'search', u'drink', u'nerve'],
  [u'hurt', u'expression', u'person'],
  [u'movie', u'stereotype'],
  [u'music', u'teacher', u'kid', u'violin', u'neighbourhood', u'school'],
  [u'kid'],
  [u'suit', u'script'],
  [u'horror']],
 [[u'movie', u'preview', u'film'],
  [u'picture'],
  [u'theatre', u'film'],
  [u'story', u'need', u'half', u'picture']],
 [[u'kind', u'saccharine'],
  [u'sentiment'],
  [u'finish', u'orchestration', u'jumper', u'cable', u'car', u'film'],
  [u'story',
   u'set-up',
   u'execution',
   u'performance',
   u'tv',
   u'movie',
   u'school',
   u'drama']],
 [[u'libre',
   u'<br',
   u'pg-13',
   u'action',
   u'humor',
   u'dialog',
   u'<br',
   u'person',
   u'end',
   u'movie',
   u'brick',
   u'wall',
   u'movie'],
  [u'man', u'time', u'audience', u'worship'],
  [u'writer',
   u'director',
   u'movie',
   u'spanish',
   u'friar',
   u'wrestler',
   u'orphanage'],
  [u'reservation', u'plot'],
  [u'reservation', u'downfall', u'movie'],
  [u'plot', u'skit', u'tv'],
  [u'plot',
   u'run',
   u'half',
   u'hour',
   u'runtime',
   u'comedy',
   u'monastery',
   u'man'],
  [u'monastery', u'monastery', u'cook', u'dream', u'wrestler'],
  [u'monastery',
   u'finance',
   u'wresting',
   u'tournament',
   u'prize',
   u'money',
   u'food',
   u'monastery',
   u'orphanage'],
  [u'plot', u'sound', u'caring'],
  [u'movie'],
  [u'displeasure', u'plot', u'humor', u'heart', u'movie'],
  [u'way',
   u'audience',
   u'fart',
   u'joke',
   u'humor\x85of',
   u'course',
   u'teenager',
   u'movie'],
  [u'woman',
   u'scurry',
   u'mouse',
   u'floor',
   u'person',
   u'laugh',
   u'award',
   u'movie'],
  [u'joke.<br', u'performance', u'libre'],
  [u'line', u'paper'],
  [u'reguera', u'woman', u'eyesight'],
  [u'partner'],
  [u'job', u'line'],
  [u'sub-par', u'movie.<br', u'libre'],
  [u'heart', u'humor', u'joke'],
  [u'libre', u'cast'],
  [u'cast', u'lack', u'word'],
  [u'chemistry', u'life', u'script'],
  [u'entirety', u'movie', u'libre'],
  [u'libre', u'movie', u'cast'],
  [u'reason', u'work'],
  [u'follow-up']],
 [[u'character.this',
   u'movie',
   u'year',
   u'olds.do',
   u'lines?ana',
   u'reguera',
   u'fine',
   u'nun',
   u'advance',
   u'movie',
   u'version',
   u'indie',
   u'film.i',
   u'movie',
   u'courage',
   u'movie'],
  [u'rudeness:jack'],
  [u'person',
   u'emissary',
   u'culture',
   u'culture',
   u'venue',
   u'guy',
   u'here.<br',
   u'imdb',
   u'review.has',
   u'review',
   u'question']],
 [[u'movie'],
  [u'time', u'life', u'movie'],
  [u'trailer'],
  [u'writing'],
  [u'stereotype', u'person'],
  [u'movie', u'eternity'],
  [u'person', u'theater'],
  [u'husband', u'stay']],
 [[u'movie'],
  [u'end', u'edge', u'seat', u'movie'],
  [u'appearance'],
  [u'performance',
   u'villain.<br',
   u'fact',
   u'movie',
   u'place',
   u'mountain',
   u'lot',
   u'guy',
   u'way',
   u'lot',
   u'action']],
 [[u'disappointment!<br',
   u'film',
   u'edge',
   u'comedy',
   u'direction',
   u'script',
   u'film',
   u'tradition'],
  [u'acting', u'self-regarding', u'character'],
  [u'soundtrack'],
  [u'fan', u'titter', u'duration'],
  [u'mistake?<br', u'film', u'review', u'script', u'signing', u'drivel']],
 [[u'sense', u'humor', u'movie'],
  [u'preview', u'movie', u'<br', u'time', u'line', u'movie'],
  [u'actor', u'role', u'attempt'],
  [u'movie', u'men', u'parts!!<br', u'piece', u'garbage<br']],
 [[u'recess', u'character'],
  [u'jack',
   u'whale',
   u'time',
   u'hammin',
   u'friar',
   u'dream',
   u'wrestler',
   u'movie',
   u'total',
   u'misfire',
   u'department.<br',
   u'movie',
   u'thinking',
   u'guy'],
  [u'script', u'character', u'naff', u'acting', u'direction'],
  [u'moment'],
  [u'minute'],
  [u'minute',
   u'aneurism',
   u'painful.<br',
   u'remember',
   u'year',
   u'actor',
   u'pap',
   u'actor',
   u'load',
   u'plop'],
  [u'that.<br', u'movie', u'man'],
  [u'to.<br', u'clich\xe9', u'movie', u'reason']],
 [[u'breathing',
   u'movie',
   u'<br',
   u'direction',
   u'writing',
   u'lack',
   u'plot',
   u'mugging',
   u'camera',
   u'shot',
   u'joke',
   u'batting',
   u'average',
   u'waste',
   u'time'],
  [u'idea', u'lack', u'comedy', u'direction', u'you-tube.<br', u'film'],
  [u'doubt', u'movie', u'racist'],
  [u'result', u'team', u'mess'],
  [u'camera'],
  [u'love', u'thing', u'racism', u'charge'],
  [u'money', u'time', u'pile', u'bean']],
 [[u'priest',
   u'wrestler',
   u'orphanage',
   u'<br',
   u'movie',
   u'non-wwf',
   u'wrestling'],
  [u'brain', u'role'],
  [u'thing', u'foil', u'character'],
  [u'ham-it-up', u'knockabout', u'guy', u'fat', u'thing'],
  [u'thing']],
 [[u'labour', u'love'],
  [u'epic', u'score', u'mixture', u'style', u'editing', u'cinematography'],
  [u'movie', u'reference', u'pulp', u'novel', u'serial', u'film', u'stood'],
  [u'film', u'reason', u'labour', u'love', u'screen', u'world', u'movie'],
  [u'tension', u'atmosphere', u'offer', u'battle', u'dinosaur', u'set-piece'],
  [u'element'],
  [u'way',
   u'thing',
   u'element',
   u'green-screen',
   u'game',
   u'half',
   u'time',
   u'actor'],
  [u'actor', u'script', u'sort'],
  [u'experience', u'nostalgia', u'feel', u'step', u'world', u'yesterday']],
 [[u'game', u'performer'],
  [u'visial', u'movie'],
  [u'visual', u'thing', u'sky', u'minute', u'movie', u'time'],
  [u'movie', u'degree'],
  [u'movie', u'walking', u'life.<br'],
  [u'performer'],
  [u'movie', u'title', u'role'],
  [u'watch', u'law', u'again.<br', u'face'],
  [u'story'],
  [u'effect', u'story', u'suffer'],
  [u'deal.<br', u'movie']],
 [[u'movie', u'month', u'preview'],
  [u'process', u'movie'],
  [u'actor', u'choice', u'past', u'mark'],
  [u'aspect', u'preview', u'waste', u'time'],
  [u'shot', u'idea', u'idea'],
  [u'movie', u'need', u'opinion', u'movie']],
 [[u'movie', u'idea', u'movie', u'point', u'view', u'1900', u'future'],
  [u'idea',
   u'lack',
   u'story',
   u'character',
   u'disbelief',
   u'idea',
   u'movie',
   u'actor',
   u'screen'],
  [u'graphic',
   u'person',
   u'softening',
   u'crutch',
   u'edge',
   u'problem',
   u'screening'],
  [u'color', u'effect', u'quality'],
  [u'graphic', u'bar', u'graphic', u'graphic'],
  [u'model', u'robot', u'plain', u'uncompelling'],
  [u'bunch',
   u'weirdo',
   u'prehistoric-like',
   u'animal',
   u'island',
   u'story',
   u'belief'],
  [u'relationship', u'movie', u'distrust', u'deception'],
  [u'way', u'plane', u'person', u'reason'],
  [u'hero'],
  [u'screen', u'time'],
  [u'vault',
   u'operation',
   u'hole',
   u'character',
   u'fall',
   u'character',
   u'robot'],
  [u'hell', u'vial', u'guy', u'vial'],
  [u'source', u'fbi-style', u'file'],
  [u'spot', u'map', u'area', u'hell', u'map', u'blank', u'spot'],
  [u'point',
   u'clothe',
   u'clothe',
   u'clothe',
   u'dress',
   u'line',
   u'continuity',
   u'clothe'],
  [u'brain', u'crap?<br', u'music', u'screen.<br'],
  [u'bunch', u'accent'],
  [u'character'],
  [u'dialogue', u'movie', u'line'],
  [u'person',
   u'hero',
   u'kind',
   u'person',
   u'misfortune',
   u'life.<br',
   u'movie',
   u'rating']],
 [[u'robot', u'horde', u'city', u'madman', u'attack'],
  [u'ace',
   u'skyway',
   u'odd',
   u'reporter',
   u'ex-girlfriend',
   u'flight',
   u'partner',
   u'tomorrow',
   u'movie',
   u'underwhelming'],
  [u'visual', u'film', u'job'],
  [u'visual'],
  [u'film', u'story', u'character', u'thing'],
  [u'visual', u'time', u'story'],
  [u'movie', u'girl', u'personality', u'kind'],
  [u'girl', u'personality'],
  [u'case', u'style', u'substance.<br', u'fault'],
  [u'reason', u'movie'],
  [u'advertising', u'film', u'minute'],
  [u'performance'],
  [u'performance', u'lot'],
  [u'performance', u'woman', u'character', u'film.<br', u'movie', u'bust'],
  [u'scene'],
  [u'film', u'hook'],
  [u'film', u'premise'],
  [u'end']],
 [[u'movie'],
  [u'problem', u'movie', u'reaction', u'minute'],
  [u'love', u'story', u'ye'],
  [u'love', u'story'],
  [u'movie', u'enjoy', u'story', u'fantasy'],
  [u'complaint', u'actor'],
  [u'actor'],
  [u'actor', u'movie'],
  [u'role',
   u'character',
   u'bit',
   u'person',
   u'movie',
   u'romance',
   u'history',
   u'movie',
   u'movie',
   u'thing'],
  [u'person', u'movie', u'action', u'movie'],
  [u'movie',
   u'genre',
   u'movie.<br',
   u'movie',
   u'trilogy.<br',
   u'writing',
   u'movie'],
  [u'flashback',
   u'portion',
   u'story',
   u'time',
   u'achievement',
   u'feel',
   u'lot',
   u'person',
   u'movie',
   u'idea',
   u'love',
   u'story',
   u'movie',
   u'constructed.<br',
   u'book',
   u'memoir',
   u'day',
   u'movie',
   u'fault'],
  [u'piping',
   u'copper',
   u'steel',
   u'iceberg',
   u'scene',
   u'movie',
   u'romance',
   u'movie',
   u'achievement',
   u'feeling',
   u'adaptation',
   u'event']],
 [[u'action',
   u'crime',
   u'adventure',
   u'flaw',
   u'director',
   u'movie',
   u'expert',
   u'climber',
   u'hostage',
   u'friend',
   u'gang',
   u'criminal',
   u'search',
   u'suit',
   u'case',
   u'cash'],
  [u'climber', u'action', u'sequence', u'border', u'line'],
  [u'sake', u'film', u'disbelief'],
  [u'rest', u'cast', u'character', u'movie'],
  [u'action', u'sequence', u'matter'],
  [u'sequence',
   u'film',
   u'studio',
   u'location',
   u'view',
   u'mountain',
   u'range',
   u'touch',
   u'reality',
   u'movie'],
  [u'death', u'sort'],
  [u'villain'],
  [u'movie', u'slow'],
  [u'fan', u'harlin', u'chance'],
  [u'character',
   u'development',
   u'action',
   u'drama',
   u'suspense',
   u'excitement',
   u'thrill',
   u'performance',
   u'cast',
   u'movie',
   u'time']],
 [[u'theater', u'film'],
  [u'review',
   u'movie',
   u'effect',
   u'preview',
   u'disappointment',
   u'feeling',
   u'film'],
  [u'boring', u'reason', u'film', u'star', u'film', u'source'],
  [u'concept',
   u'film',
   u'spin',
   u'concept',
   u'rehash',
   u'pulp-era',
   u'robot',
   u'cartoon',
   u'film',
   u'giant',
   u'artist',
   u'minion',
   u'villain',
   u'film',
   u'year',
   u'subject',
   u'film',
   u'performance'],
  [u'movie', u'blue-screen', u'computer', u'imagery', u'actor'],
  [u'excuse', u'acting'],
  [u'person',
   u'child',
   u'lack',
   u'reference',
   u'excuse',
   u'trying.<br',
   u'humanity',
   u'film'],
  [u'protagonist'],
  [u'antagonist', u'robot', u'number', u'character', u'film', u'hand'],
  [u'robot', u'planet', u'mass', u'humanity'],
  [u'performance', u'character', u'here.<br', u'film', u'movie'],
  [u'film',
   u'example',
   u'action',
   u'film',
   u'filmmaker',
   u'movie',
   u'effect',
   u'vision',
   u'originality',
   u'kind']],
 [[u'zeppelin', u'present', u'metaphor', u'movie'],
  [u'cult'],
  [u'adventure',
   u'action',
   u'flick',
   u'use',
   u'computer',
   u'animation',
   u'scene'],
  [u'explosion', u'dogfight', u'scene', u'moment', u'character'],
  [u'groundbreaking',
   u'film',
   u'computer',
   u'imagery',
   u'actor',
   u'setting',
   u'flop',
   u'requirement',
   u'flick'],
  [u'quite', u'graphic'],
  [u'movement', u'car', u'physics', u'aircraft', u'dogfight'],
  [u'way'],
  [u'infant', u'car', u'road', u'train'],
  [u'voice', u'protest', u'film', u'reality'],
  [u'standard',
   u'actor',
   u'starship',
   u'trooper',
   u'standard',
   u'science',
   u'fiction',
   u'film',
   u'job',
   u'decade',
   u'film',
   u'portfolio',
   u'picture'],
  [u'film', u'sentence'],
  [u'acting']],
 [[u'lot', u'viewer', u'school', u'movie', u'movie'],
  [u'movie', u'character'],
  [u'movie', u'mix', u'future', u'mix', u'movie', u'effect'],
  [u'screen', u'actor'],
  [u'movie', u'movie', u'reason', u'critic', u'hype', u'movie', u'movie'],
  [u'story', u'line'],
  [u'movie', u'actors', u'movie', u'movie'],
  [u'everybody', u'script', u'print', u'computer'],
  [u'movie', u'movie', u'network', u'movie']],
 [[u'visual', u'lot', u'talent', u'effect', u'artwork'],
  [u'it.<br', u'color', u'sort', u'thing', u'time', u'movie'],
  [u'hat-tip', u'movie'],
  [u'problem',
   u'that.<br',
   u'movie',
   u'story',
   u'line',
   u'script',
   u'movie',
   u'character'],
  [u'scene']],
 [[u'film', u'time'],
  [u'tomorrow',
   u'cinematography',
   u'computer',
   u'graphic',
   u'design',
   u'world'],
  [u'movie', u'attack', u'army', u'generator', u'reason'],
  [u'disappearance', u'mind'],
  [u'leap',
   u'faith',
   u'wisecracking',
   u'reporter',
   u'girlfriend',
   u'lead',
   u'wing',
   u'trusty',
   u'sidekick'],
  [u'plot', u'film'],
  [u'film', u'feeling', u'film', u'serial', u'yesteryear'],
  [u'story', u'budget', u'film'],
  [u'dark', u'look', u'film', u'end', u'life'],
  [u'story'],
  [u'portrayal'],
  [u'paltrow'],
  [u'law', u'tradition', u'shoulder'],
  [u'thing', u'promise']],
 [[u'computer', u'game', u'focus', u'computer'],
  [u'person', u'set', u'location', u'use', u'film']],
 [[u'movie'],
  [u'effect',
   u'a-list',
   u'racing',
   u'storyline',
   u'movie',
   u'term',
   u'course.<br',
   u'accent',
   u'plenty',
   u'smirk',
   u'delivery',
   u'look',
   u'movie',
   u'stone',
   u'dialogue'],
  [u'boy', u'time', u'guy'],
  [u'comment', u'minute', u'movie'],
  [u'effort', u'book', u'heroine'],
  [u'example', u'character', u'flick'],
  [u'movie', u'grace', u'film'],
  [u'eyepatch'],
  [u'scene',
   u'actor',
   u'material',
   u'performance',
   u'castmates.<br',
   u'plot',
   u'story',
   u'progression',
   u'combination',
   u'scene',
   u'action',
   u'movie',
   u'year'],
  [u'pace',
   u'half',
   u'movie',
   u'snail',
   u'pace',
   u'audience',
   u'time',
   u'conclusion',
   u'film',
   u'villain'],
  [u'pairing', u'clich\xe9d', u'year', u'separation', u'romance', u'story'],
  [u'term',
   u'feeling',
   u'end',
   u'film',
   u'director',
   u'skintight',
   u'vinyl',
   u'entirety',
   u'film',
   u'tone',
   u'coloration'],
  [u'element', u'movie', u'face']],
 [[u'homage',
   u'book',
   u'pulp',
   u'adventure',
   u'movie',
   u'serial',
   u'magic',
   u'genre'],
  [u'expectation', u'films,fiction', u'serial', u'tribute'],
  [u'film', u'charm', u'attraction'],
  [u'time', u'conversation', u'contemplation', u'foe', u'second', u'tragedy'],
  [u'course',
   u'convention',
   u'director',
   u'sense',
   u'urgency.<br',
   u'film',
   u'sense'],
  [u'fun', u'sense', u'logic'],
  [u'law', u'paltrow', u'creature', u'chasm', u'log', u'bridge'],
  [u'creature'],
  [u'bridge', u'escape'],
  [u'land',
   u'chasm',
   u'creature',
   u'film',
   u'effort',
   u'if.<br',
   u'paltrow',
   u'fine',
   u'performance',
   u'past',
   u'type'],
  [u'nuance', u'oomph', u'role', u'chance'],
  [u'job', u'film', u'way', u'distract'],
  [u'creature', u'nature'],
  [u'location'],
  [u'sense', u'wonder'],
  [u'mountain', u'stateliness', u'sense', u'awe', u'foreboding', u'mountain'],
  [u'design', u'film', u'way'],
  [u'<br', u'script', u'homage', u'excuse'],
  [u'movie', u'thrill', u'tension'],
  [u'day',
   u'week',
   u'fan',
   u'viewer',
   u'world',
   u'rule',
   u'way',
   u'way',
   u'not.<br',
   u'approach',
   u'film',
   u'book',
   u'hero',
   u'flash',
   u'treatment'],
  [u'character', u'character', u'film']],
 [[u'originality', u'department'],
  [u'excercise', u'technique', u'battle'],
  [u'charisma', u'toast', u'defense', u'film', u'dialogue', u'screen'],
  [u'fact',
   u'script',
   u'film',
   u'work',
   u'dog',
   u'moment',
   u'scream',
   u'bluescreen'],
  [u'paltrow'],
  [u'film', u'dialogue', u'camp'],
  [u'complaint', u'technique', u'film', u'computer'],
  [u'clich\xe9', u'mess']],
 [[u'tomorrow', u'title', u'movie', u'heart', u'idea'],
  [u'background', u'result', u'thing', u'focus'],
  [u'idea', u'gob', u'gob', u'gob', u'bit', u'movie', u'serial']],
 [[u'drawing'],
  [u'terrorists', u'kid', u'resilience', u'ice-cold', u'weather', u'dialog'],
  [u'guy', u'use', u'tango-tango'],
  [u'film', u'suspense', u'action-sequence', u'setting'],
  [u'ye', u'humour.<br', u'film', u'banter', u'character', u'time'],
  [u'dialog', u'action'],
  [u'<br', u'exchange', u'time', u'chuckle', u'viewer'],
  [u'display', u'dialog-writing', u'witness', u'hijack', u'airplane'],
  [u'action', u'absurdity', u'fun'],
  [u'rest', u'action', u'fun', u'airplane', u'scene', u'highlight', u'film'],
  [u'case', u'money', u'clothe', u'equipment'],
  [u'gangster', u'reason', u'doubt'],
  [u'guy', u'snicker', u'manner'],
  [u'writer',
   u'mass',
   u'execution',
   u'school',
   u'child',
   u'evilness',
   u'guy',
   u'guy',
   u'chopper',
   u'hell',
   u'fall',
   u'trap'],
  [u'bunch', u'exchange', u'place', u'honour', u'line'],
  [u'football', u'body'],
  [u'script']],
 [[u'problem', u'lead'],
  [u'<br', u'visual', u'scene'],
  [u'action',
   u'sequence',
   u'film',
   u'drama',
   u'sense',
   u'danger.<br',
   u'film',
   u'script',
   u'director'],
  [u'<br', u'film'],
  [u'critic', u'film', u'level']],
 [[u'downright', u'movie', u'acting', u'director'],
  [u'cliffhanger', u'attempt', u'flash', u'waste', u'money'],
  [u'screen', u'screen', u'test'],
  [u'advice', u'dog'],
  [u'screen', u'effect', u'shot', u'movie'],
  [u'let', u'actor', u'eye'],
  [u'performance', u'school', u'effort'],
  [u'director'],
  [u'thing', u'director', u'work', u'dreck']],
 [[u'scene', u'movie', u'number', u'actor', u'screen'],
  [u'screen', u'extra', u'movie'],
  [u'screen',
   u'action',
   u'scene',
   u'actor',
   u'half',
   u'life',
   u'floor',
   u'mark',
   u'head',
   u'movie'],
  [u'plane', u'person', u'entire', u'world', u'attack', u'person']],
 [[u'reviews',
   u'story',
   u'audience',
   u'smoke',
   u'damn.<br',
   u'director',
   u'eye',
   u'art',
   u'deco',
   u'idea',
   u'background',
   u'wave',
   u'future',
   u'movie'],
  [u'director', u'rendering', u'movie', u'film', u'scene', u'film'],
  [u'villain', u'thing'],
  [u'year', u'time', u'movie', u'place'],
  [u'paltrow',
   u'movie',
   u'reviewer',
   u'comment',
   u'lack',
   u'chemistry',
   u'shot',
   u'camera',
   u'showing',
   u'movie',
   u'year'],
  [u'law', u'time', u'screen', u'movie', u'flaw'],
  [u'audience', u'robot', u'hero', u'villain'],
  [u'story', u'world']],
 [[u'guy', u'dancing', u'movie', u'form', u'dance', u'music', u'movie'],
  [u'plot', u'fight', u'sofa', u'sort', u'weapon', u'scene']],
 [[u'<br', u'brewsky', u'enjoy', u'action', u'flick'],
  [u'kempo', u'skill', u'spin', u'kick', u'stick', u'couch'],
  [u'quality', u'movie', u'acting'],
  [u'plot', u'half'],
  [u'movie', u'art', u'boat'],
  [u'movie', u'place', u'way', u'way', u'actor', u'extra']],
 [[u'plot', u'b-movie', u'fight', u'scene'],
  [u'tv', u'version', u'share', u'moment', u'kiss', u'garden'],
  [u'video', u'version', u'scene'],
  [u'point-of-view', u'film', u'shot']],
 [[u'time', u'message', u'ability', u'story', u'heart', u'genius'],
  [u'hour', u'film', u'story', u'film'],
  [u'struggle', u'choice', u'reason', u'feeling'],
  [u'job', u'film'],
  [u'camera', u'work', u'writing', u'decay', u'film'],
  [u'film', u'film'],
  [u'money', u'film', u'talent.<br', u'film', u'film', u'chance'],
  [u'film'],
  [u'work', u'transformation', u'desire', u'money', u'film'],
  [u'hour', u'sheer', u'brilliance'],
  [u'actor', u'story', u'film', u'man', u'journey', u'unknown'],
  [u'journey', u'life', u'man'],
  [u'actor',
   u'generation',
   u'cinema',
   u'film',
   u'showcase',
   u'talent.<br',
   u'issue',
   u'film',
   u'use',
   u'sister',
   u'love'],
  [u'image', u'sister', u'remorse'],
  [u'blush'],
  [u'couch', u'film', u'voice', u'spelling', u'studio', u'film'],
  [u'remaining', u'story'],
  [u'money', u'film', u'talent'],
  [u'movie', u'explosions.<br', u'scene', u'film', u'end'],
  [u'movie', u'diamond'],
  [u'scene', u'shuffle', u'scene'],
  [u'scene', u'way', u'film'],
  [u'direction', u'character', u'circle', u'chance', u'life'],
  [u'moment', u'rest', u'film', u'rubbish']],
 [[u'thing',
   u'jazz',
   u'bio',
   u'fiction',
   u'happenin',
   u'jazz',
   u'trumpeter',
   u'quintet'],
  [u'problem',
   u'manager',
   u'stage',
   u'sax',
   u'player',
   u'girlfriend',
   u'mattress'],
  [u'love', u'life', u'trumpet', u'music'],
  [u'band',
   u'manager',
   u'gambling',
   u'problem',
   u'negotiator',
   u'club',
   u'owner'],
  [u'undoing',
   u'artist',
   u'growth',
   u'man.<br',
   u'trumpeter',
   u'babe',
   u'arm'],
  [u'guy', u'self', u'art', u'patience', u'key', u'remoteness'],
  [u'sax', u'player', u'role', u'mouth', u'throw', u'scribbling', u'dialogue'],
  [u'giant', u'trifecta', u'performance', u'writing', u'direction'],
  [u'moment', u'cowboy'],
  [u'case',
   u'taxi',
   u'it.<br',
   u'script',
   u'argument',
   u'ribbing',
   u'insult',
   u'editorializing'],
  [u'travesty', u'style'],
  [u'love',
   u'letter',
   u'jazz',
   u'mountain',
   u'memorabilium',
   u'set',
   u'clap',
   u'trap',
   u'passion',
   u'verve'],
  [u'film',
   u'surface',
   u'form',
   u'pain',
   u'addition',
   u'lead',
   u'performance',
   u'deal'],
  [u'buzz'],
  [u'homegrown']],
 [[u'person', u'movie'],
  [u'comedy', u'film'],
  [u'acting', u'comedy', u'passion', u'romance'],
  [u'character', u'coward'],
  [u'lack', u'remorse', u'character', u'finance'],
  [u'thing',
   u'escape',
   u'commitment',
   u'show.<br',
   u'movie',
   u'wedding',
   u'scene',
   u'foot',
   u'potato',
   u'commitment'],
  [u'movie',
   u'person',
   u'character',
   u'commitment',
   u'etc.).<br',
   u'failure',
   u'movie',
   u'lack',
   u'twist',
   u'turn'],
  [u'suspense',
   u'joy',
   u'consequence',
   u'actions.<br',
   u'person',
   u'shoddiness',
   u'movie',
   u'criticism'],
  [u'movie', u'cynicism', u'examination'],
  [u'comedy',
   u'movie',
   u'movie',
   u'heart',
   u'window',
   u'examination',
   u'romance',
   u'today',
   u'society']],
 [[u'theater'],
  [u'time'],
  [u'setting', u'lot', u'storyline', u'town', u'mountain', u'folk', u'hero'],
  [u'villain', u'element'],
  [u'action', u'movie']],
 [[u'movie', u'year', u'brainless', u'piece'],
  [u'message',
   u'level',
   u'sledgehammer',
   u'proceed',
   u'pound',
   u'psyche',
   u'hour',
   u'half',
   u'hour',
   u'half',
   u'life',
   u'thank'],
  [u'character',
   u'movie',
   u'maturity',
   u'level',
   u'fourteen-year-old',
   u'fourteen-year-old'],
  [u'minute',
   u'movie',
   u'character',
   u'silliness',
   u'game',
   u'sensibility',
   u'wind',
   u'friend',
   u'belief'],
  [u'husband',
   u'rockstar',
   u'intelligence',
   u'character',
   u'half',
   u'idiot',
   u'mess'],
  [u'protagonist',
   u'clue',
   u'choice',
   u'life',
   u'puppet',
   u'destiny',
   u'whim',
   u'fate'],
  [u'movie', u'messiness', u'life', u'choice', u'consequence'],
  [u'movie',
   u'hero',
   u'heroine',
   u'havoc',
   u'misery',
   u'person',
   u'life',
   u'fianc\xe9es',
   u'relative',
   u'friend',
   u'there.<br']],
 [[u'story', u'line', u'comedy', u'concept', u'work'],
  [u'man(john', u'drop', u'woman(kate', u'meeting', u'chance', u'wonder'],
  [u'place', u'love'],
  [u'scene', u'ground', u'snow'],
  [u'finale'],
  [u'role', u'hell'],
  [u'role'],
  [u'hand']],
 [[u'<br', u'movie', u'comic-hero-movie'],
  [u'actor', u'actor', u'world', u'script'],
  [u'kid', u'age', u'film'],
  [u'thing', u'computeranimation']],
 [[u'movie', u'night', u'girlfriend', u'friend', u'view', u'liberal'],
  [u'movie', u'mass', u'opponent', u'antagonist'],
  [u'statement', u'end.<br', u'plot', u'president', u'lobbyist'],
  [u'entertaining', u'plot'],
  [u'movie', u'infomercial'],
  [u'movie',
   u'gun',
   u'control',
   u'issue',
   u'relationship',
   u'premise',
   u'movie',
   u'character',
   u'figure',
   u'lobbyist'],
  [u'awe'],
  [u'sale', u'glass', u'water', u'man', u'thirst.<br', u'wing', u'fanatic'],
  [u'man', u'wing', u'ideologue'],
  [u'character', u'possible.<br', u'speech', u'end'],
  [u'line', u'card', u'member', u'joke'],
  [u'president', u'member', u'fringe', u'group'],
  [u'movie', u'audience', u'plot'],
  [u'choice', u'president'],
  [u'movie',
   u'movie',
   u'wing',
   u'statement',
   u'movie',
   u'failed.<br',
   u'shame',
   u'plot',
   u'view',
   u'audience']],
 [[u'movie', u'family', u'movie']],
 [[u'wayan', u'brother', u'joke'],
  [u'actor', u'film'],
  [u'raunchy', u'joke', u'film', u'person'],
  [u'time', u'joke'],
  [u'scene', u'movie', u'parody', u'recreation', u'scene', u'joke', u'scene'],
  [u'person', u'audience', u'age', u'range'],
  [u'person', u'person', u'idea', u'person'],
  [u'skill', u'kind', u'script', u'movie', u'movie'],
  [u'movie', u'parody', u'joke']],
 [[u'movie',
   u'year',
   u'shortness',
   u'minute',
   u'end',
   u'credit',
   u'minute',
   u'film'],
  [u'lack', u'humor', u'film', u'possessed.<br', u'gag'],
  [u'spoof',
   u'basketball',
   u'spot',
   u'portrayal',
   u'character',
   u'exorcist',
   u'bit',
   u'piece',
   u'film'],
  [u'scene',
   u'scene',
   u'humor',
   u'it.<br',
   u'youth',
   u'spoof',
   u'gag',
   u'horror',
   u'film',
   u'exorcist',
   u'poltergeist'],
  [u'time', u'spoof', u'thing', u'film', u'actress', u'sequel'],
  [u'casting', u'ability', u'movie']],
 [[u'script'],
  [u'problem', u'film', u'actor', u'audience'],
  [u'actor', u'person', u'movie'],
  [u'credit', u'film', u'moment'],
  [u'laugh', u'film'],
  [u'subtlety', u'slasher', u'film', u'genre', u'gold'],
  [u'humor'],
  [u'opportunity', u'parody'],
  [u'analysis', u'bottle', u'wine']],
 [[u'attempt', u'humor'], [u'movie', u'movie', u'rip-off']],
 [[u'thing'],
  [u'couple', u'scene'],
  [u'movie', u'kid', u'child', u'movie'],
  [u'movie', u'rental', u'coupon']],
 [[u'movie', u'time'],
  [u'movie', u'tv', u'sound'],
  [u'music', u'movie', u'level', u'potential'],
  [u'it.<br', u'movie'],
  [u'kiss', u'movie'],
  [u'effect']],
 [[u'movie'],
  [u'hand', u'time', u'spoof', u'movie'],
  [u'disadvantage', u'movie', u'parody'],
  [u'comedy', u'comedy.<br', u'movie', u'timing', u'joke'],
  [u'time'],
  [u'point'],
  [u'routine', u'wheelchair', u'guy', u'tasteless.<br', u'joke', u'movie'],
  [u'example', u'boyfriend', u'sex', u'ball', u'hell'],
  [u'time', u'place', u'bathroom', u'humor', u'general', u'time'],
  [u'scat',
   u'humor',
   u'film.<br',
   u'place',
   u'movie.<br',
   u'enjoy',
   u'opinion',
   u'character',
   u'film'],
  [u'scene', u'pot', u'plant', u'favorite', u'film.<br', u'family', u'humor'],
  [u'film'],
  [u'lot', u'ability', u'scat', u'joke']],
 [[u'movie', u'disappointment'],
  [u'movie', u'comedy'],
  [u'movie', u'person', u'rapping', u'scene', u'use'],
  [u'acting'],
  [u'gag', u'snail', u'movie', u'joint', u'movie', u'theater'],
  [u'movie', u'halt', u'minute'],
  [u'attempt', u'humor', u'sequel', u'cash', u'teenager'],
  [u'movie']],
 [[u'kind', u'boring'],
  [u'act', u'film', u'group', u'teen', u'mansion', u'night'],
  [u'thing', u'start', u'movie', u'thing']],
 [[u'movie', u'film', u'plot', u'acting', u'joke'],
  [u'actor', u'joke', u'beginning'],
  [u'actor', u'joke', u'butler', u'hand', u'cringey', u'thing'],
  [u'beginning',
   u'spoof',
   u'plot',
   u'character',
   u'host',
   u'character',
   u'way',
   u'night',
   u'mansion',
   u'night'],
  [u'film']],
 [[u'fan', u'parody', u'form', u'humor'],
  [u'form', u'humor'],
  [u'boy', u'concept', u'film', u'sequel'],
  [u'family', u'geniuse'],
  [u'time', u'middle', u'night', u'spirit', u'marriage'],
  [u'dance', u'parody', u'character', u'girl'],
  [u'giggle',
   u'match',
   u'side-splitting',
   u'laugh',
   u'rest',
   u'movie',
   u'trash',
   u'gross-out',
   u'gag'],
  [u'joke', u'movie'],
  [u'example', u'innuendo', u'character'],
  [u'penis-strangulation', u'scene', u'bed'],
  [u'<br', u'pain', u'rate', u'movie']],
 [[u'director', u'knowledge', u'film'],
  [u'film', u'movie'],
  [u'movie', u'disaster'],
  [u'title', u'menace', u'juice', u'hood', u'title'],
  [u'film', u'credits.<br', u'hour', u'half', u'nonsense', u'laugh'],
  [u'woman', u'film', u'thing', u'film', u'taste', u'film']],
 [[u'chick', u'laugh'],
  [u'<br', u'humour'],
  [u'catchphrase'],
  [u'minute', u'film'],
  [u'story', u'movie', u'laugh'],
  [u'problem', u'film', u'laugh'],
  [u'joke', u'place'],
  [u'comedy', u'laugh', u'movie', u'airplane', u'hotshot'],
  [u'<br', u'storyline', u'film', u'idea', u'chick', u'film']],
 [[u'premise',
   u'change',
   u'colour',
   u'time',
   u'transformation',
   u'guy',
   u'girl',
   u'transformations',
   u'screen'],
  [u'script', u'change', u'chick'],
  [u'brother', u'woman'],
  [u'queen', u'makeup', u'woman', u'effect', u'make-up', u'person'],
  [u'mix',
   u'basketball',
   u'player',
   u'building',
   u'dialogue',
   u'plot',
   u'hole',
   u'golf',
   u'course',
   u'film',
   u'low'],
  [u'movie']],
 [[u'time', u'movie']],
 [[u'death', u'critic'],
  [u'film'],
  [u'reason',
   u'film',
   u'world',
   u'film',
   u'festival',
   u'theater',
   u'distributor',
   u'film',
   u'lot',
   u'tribute',
   u'film',
   u'dog',
   u'film',
   u'film']],
 [[u'fan', u'time', u'appearance', u'movie', u'taxi', u'role'],
  [u'movie',
   u'worst.<br',
   u'girlfriend',
   u'friend',
   u'death',
   u'foot',
   u'mountain',
   u'working',
   u'mountain',
   u'ranger'],
  [u'reality',
   u'group',
   u'robber',
   u'airplane',
   u'mountain',
   u'plan',
   u'case',
   u'money',
   u'government',
   u'plane'],
  [u'case', u'reserve', u'help', u'climber', u'course', u'movie', u'genre'],
  [u'master', u'mind', u'leader', u'gang', u'robber'],
  [u'acting', u'lot', u'action', u'course', u'one-liner', u'decor'],
  [u'movie', u'environment'],
  [u'mountain',
   u'valley',
   u'mountain',
   u'river',
   u'forest',
   u'movie',
   u'score',
   u'action',
   u'adventure',
   u'movie',
   u'kind'],
  [u'movie']],
 [[u'heist', u'movie'],
  [u'a-list',
   u'lead',
   u'maverick',
   u'director',
   u'end',
   u'movie',
   u'sub-genre'],
  [u'start',
   u'film',
   u'mastermind',
   u'piece',
   u'camera',
   u'conclusion',
   u'confusing',
   u'witness',
   u'interview',
   u'scene',
   u'sense'],
  [u'course',
   u'camera',
   u'work',
   u'hand-camera',
   u'shot',
   u'director',
   u'thrill',
   u'suspense',
   u'protagonist',
   u'film'],
  [u'clothe',
   u'bad-ass',
   u'jive',
   u'talk',
   u'shaft',
   u'movie',
   u'year',
   u'woman',
   u'thing',
   u'girlfriend',
   u'crude',
   u'heat',
   u'riff',
   u'bit-part',
   u'ripple'],
  [u'character', u'accent', u'gang', u'film', u'mask', u'face'],
  [u'ice', u'maiden', u'sub-clarice', u'bounty-hunter', u'effect'],
  [u'mish-mash',
   u'film',
   u'light',
   u'twist',
   u'end',
   u'fact',
   u'title',
   u'start',
   u'spoiler',
   u'fan'],
  [u'scene',
   u'witness-interview',
   u'year',
   u'street-kid',
   u'dialogue',
   u'child',
   u'minute',
   u'embarrassment',
   u'stake'],
  [u'film',
   u'in-joke',
   u'reference',
   u'character',
   u'heist',
   u'film',
   u'honour',
   u'self-praise'],
  [u'laugh']],
 [[u'gripping'],
  [u'script', u'direction', u'pace', u'into.<br', u'plot'],
  [u'sense', u'picture'],
  [u'hour',
   u'sequence',
   u'music',
   u'playing',
   u'action',
   u'scene',
   u'viewer',
   u'vixen',
   u'scene',
   u'intelligence.<br',
   u'wish',
   u'thriller',
   u'box'],
  [u'film']],
 [[u'movie', u'potential', u'cast', u'idea', u'budget'],
  [u'element'],
  [u'story', u'character', u'result', u'waste', u'film'],
  [u'movie'],
  [u'hope'],
  [u'disappointment', u'character'],
  [u'fixer', u'sort', u'idea'],
  [u'character'],
  [u'character']],
 [[u'trailer', u'film', u'movie'],
  [u'movie', u'actor', u'b-movie'],
  [u'day', u'age', u'plot', u'twist', u'closure', u'film', u'film'],
  [u'thing',
   u'suspect',
   u'way',
   u'lighting',
   u'delivery',
   u'line',
   u'writing'],
  [u'saxophone', u'music', u'film']],
 [[u'work', u'movie', u'die-hard', u'movie', u'copycat'],
  [u'couple',
   u'joke',
   u'twist',
   u'moment',
   u'director',
   u'editor',
   u'mistake',
   u'shame',
   u'waste',
   u'time'],
  [u'hole',
   u'hell',
   u'diamond',
   u'cell',
   u'day',
   u'thing',
   u'eyebrow',
   u'studio',
   u'contract',
   u'movie',
   u'relax',
   u'enjoy']],
 [[u'story', u'line', u'man', u'attempt'],
  [u'moment',
   u'movie',
   u'thriller',
   u'slow',
   u'crawl',
   u'high',
   u'lows',
   u'steam',
   u'minute'],
  [u'credit', u'grasp', u'super-detective', u'answer'],
  [u'genius', u'mastermind', u'retrospect'],
  [u'person', u'sub-section'],
  [u'energy', u'lot', u'plot-hole', u'ton', u'question', u'level'],
  [u'critic', u'movie']],
 [[u'movie', u'sense', u'plot', u'hole', u'vehicle'],
  [u'character', u'way'],
  [u'comment', u'chat', u'board', u'time', u'money'],
  [u'million',
   u'dollar',
   u'flash',
   u'bang',
   u'equipment',
   u'editing',
   u'music',
   u'plot',
   u'level'],
  [u'flavor'],
  [u'kid', u'game']],
 [[u'movie'],
  [u'judgment',
   u'film',
   u'movie',
   u'fool',
   u'turn.<br',
   u'beef',
   u'character'],
  [u'movie', u'character', u'mastermind', u'bank', u'robbery'],
  [u'prison', u'cell', u'metaphor'],
  [u'bank', u'robbery', u'minimum', u'number', u'thing', u'police'],
  [u'scheme', u'bank', u'hour', u'reason'],
  [u'hostage',
   u'cop',
   u'job',
   u'bank',
   u'stockroom',
   u'week',
   u'food',
   u'bucket'],
  [u'crime'],
  [u'plan',
   u'reason',
   u'screenwriter',
   u'so.<br',
   u'cop',
   u'crook',
   u'accomplice',
   u'hostage'],
  [u'hell', u'character', u'mayor', u'beck', u'agenda', u'pay', u'scale'],
  [u'cop',
   u'figure',
   u'guy',
   u'speaking',
   u'language',
   u'hour',
   u'sound',
   u'gang',
   u'robbery'],
  [u'bank', u'chairman', u'past', u'number', u'content', u'deposit', u'box'],
  [u'toy'],
  [u'manage', u'area', u'bank', u'working', u'hour'],
  [u'cop', u'diamond?<br', u'question'],
  [u'film', u'depth', u'event', u'way'],
  [u'scene', u'thing', u'movie', u'question', u'answer', u'place'],
  [u'character', u'tire'],
  [u'word',
   u'reason',
   u'movie',
   u'star',
   u'taxi',
   u'cab',
   u'pina',
   u'colada',
   u'gag',
   u'kid',
   u'video',
   u'game'],
  [u'movie', u'feature']],
 [[u'movie', u'comment', u'imdb', u'movie'],
  [u'money', u'movie', u'way', u'combination', u'film', u'action', u'flick'],
  [u'mind', u'game', u'reader'],
  [u'guard'],
  [u'hmmmmmm', u'guy', u'role', u'plate'],
  [u'performance', u'border'],
  [u'tone', u'way'],
  [u'guy', u'way', u'role'],
  [u'need', u'agent'],
  [u'movie', u'time', u'life'],
  [u'role'],
  [u'star', u'knee', u'class', u'role', u'movie'],
  [u'plot', u'plot', u'fact', u'plot', u'fact', u'movie', u'dump', u'dinner'],
  [u'way', u'un-necessary', u'racism'],
  [u'movie', u'bank', u'robber', u'racism', u'try', u'person', u'emotion'],
  [u'room'],
  [u'conclusion', u'sure', u'watch', u'movie', u'time', u'friend', u'movie'],
  [u'person', u'watch', u'movie', u'star', u'mistake']],
 [[u'yawn-inducing',
   u'disappointment',
   u'story',
   u'detective',
   u'investigation',
   u'involvement',
   u'case',
   u'money'],
  [u'bank',
   u'hostage',
   u'mastermind',
   u'thief',
   u'team',
   u'detective',
   u'thief',
   u'shot',
   u'position'],
  [u'woman',
   u'secret',
   u'intent',
   u'item',
   u'bank',
   u'owner',
   u'safety',
   u'deposit',
   u'box',
   u'bank',
   u'dilemma'],
  [u'performance'],
  [u'saving', u'grace', u'film', u'co-star', u'film'],
  [u'fact', u'high-caliber', u'performance', u'type', u'villain', u'sort'],
  [u'brood', u'depth', u'presence', u'ability', u'role'],
  [u'talent', u'film', u'impact'],
  [u'aspect', u'praise'],
  [u'film', u'making', u'blockbuster']],
 [[u'time',
   u'action',
   u'movie',
   u'mountain',
   u'clone',
   u'term',
   u'action',
   u'movie',
   u'landscape',
   u'immensity',
   u'conflict',
   u'person',
   u'peaks.<br',
   u'movie',
   u'crime',
   u'murder',
   u'snowbound',
   u'location',
   u'director',
   u'impact',
   u'violence',
   u'struggle',
   u'cold',
   u'surroundings.<br',
   u'sequence',
   u'praise',
   u'intensity',
   u'artifice',
   u'camera',
   u'actor'],
  [u'shot',
   u'animal',
   u'joke',
   u'expression',
   u'face',
   u'sequence',
   u'power.<br',
   u'set-piece',
   u'gunfight',
   u'heist',
   u'jet'],
  [u'audience', u'action', u'agent', u'theft', u'double-cross'],
  [u'stuntman',
   u'mid-air',
   u'transfer',
   u'plane',
   u'recognition.<br',
   u'avalanche',
   u'sequence',
   u'terrorists',
   u'wall',
   u'snow',
   u'mountain'],
  [u'movie', u'miracle', u'nature', u'stunt', u'dummy', u'shot'],
  [u'shot',
   u'second-unit',
   u'director',
   u'camera.<br',
   u'action',
   u'hero',
   u'day',
   u'week',
   u'movie',
   u'lot',
   u'pain',
   u'time',
   u'pain'],
  [u'role',
   u'strength',
   u'kind',
   u'action',
   u'hero',
   u'performance',
   u'mountain',
   u'rescuer',
   u'contrast',
   u'today',
   u'post-matrix',
   u'action',
   u'hero',
   u'man',
   u'hero',
   u'ability'],
  [u'hero', u'death', u'clothe', u'tear', u'escape', u'situation'],
  [u'hit',
   u'bleed',
   u'cavern',
   u'sequence',
   u'pummeling',
   u'mad-dog',
   u'villains.<br',
   u'villain',
   u'movie',
   u'effectiveness',
   u'movie',
   u'teenager',
   u'guy',
   u'step',
   u'way',
   u'guy',
   u'dust',
   u'ice',
   u'point',
   u'character',
   u'movie',
   u'demise.<br',
   u'accent',
   u'movie',
   u'model',
   u'plane',
   u'model',
   u'helicopter',
   u'actor',
   u'dialogue',
   u'scene',
   u'hostage',
   u'task',
   u'stay'],
  [u'actor',
   u'trouble',
   u'line.<br',
   u'toss',
   u'credibility',
   u'sake',
   u'entertaining',
   u'show.<br',
   u'movie',
   u'example',
   u'man'],
  [u'mastermind',
   u'mistake',
   u'carelessness',
   u'warning',
   u'rock',
   u'face',
   u'gripping',
   u'tug-of-war',
   u'guy',
   u'rope',
   u'leg.<br',
   u'order',
   u'means',
   u'sequence',
   u'fun',
   u'opportunity',
   u'arrogance',
   u'captor.<br',
   u'style',
   u'serial',
   u'time',
   u'foundation',
   u'element',
   u'film.<br',
   u'aircraft',
   u'model',
   u'moment',
   u'couple',
   u'scene',
   u'set',
   u'snow',
   u'scene',
   u'bat',
   u'wolf',
   u'narrative'],
  [u'decision',
   u'film',
   u'death',
   u'scene',
   u'motion',
   u'technique',
   u'scenes.<br',
   u'shame',
   u'action',
   u'movie',
   u'character',
   u'movie',
   u'year'],
  [u'time', u'sequel', u'movie'],
  [u'sequel', u'clinker', u'list.<br', u'movie']],
 [[u'wife', u'film'],
  [u'plot', u'theater', u'sense'],
  [u'spoiler', u'head', u'bank', u'hidden'],
  [u'deal',
   u'loot',
   u'stolen',
   u'jew',
   u'evidence',
   u'diamond',
   u'document',
   u'swastika',
   u'safety',
   u'deposit',
   u'box',
   u'bank'],
  [u'time', u'search', u'bank', u'record', u'fact'],
  [u'hostage', u'situation', u'bank', u'robber'],
  [u'talk',
   u'power',
   u'detective.<br',
   u'bank',
   u'robber',
   u'million',
   u'dollar',
   u'currency',
   u'vault'],
  [u'attempt',
   u'explanation',
   u'film',
   u'mastermind',
   u'henchman',
   u'brains.<br',
   u'connection',
   u'gain',
   u'permission',
   u'bank',
   u'control',
   u'bank',
   u'robber',
   u'hostage'],
  [u'bank', u'robber', u'deal', u'document', u'hand'],
  [u'point',
   u'any?).<br',
   u'wife',
   u'arrogance',
   u'player',
   u'ace',
   u'detective',
   u'crack',
   u'trouble',
   u'shooter',
   u'problems.<br',
   u'movie',
   u'hole',
   u'sense'],
  [u'film', u'actor', u'script', u'writing']],
 [[u'film', u'trailer'],
  [u'reviews', u'adoration', u'banality', u'piece', u'work'],
  [u'theater',
   u'money.<br',
   u'imdb',
   u'page',
   u'<br',
   u'day',
   u'budget',
   u'medium',
   u'hype',
   u'time'],
  [u'wonder',
   u'performance',
   u'all.<br',
   u'film',
   u'project',
   u'justice',
   u'time',
   u'course'],
  [u'writing', u'premise', u'merit'],
  [u'film', u'clich\xe9', u'scene', u'characterization'],
  [u'portrayal', u'fixer', u'person', u'problem', u'script'],
  [u'<br', u'bank', u'robber', u'door', u'polouse', u'officer', u'bank'],
  [u'struggle', u'robber', u'face'],
  [u'response', u'robber', u'identification'],
  [u'robber', u'accomplice'],
  [u'<br', u'bank', u'robber'],
  [u'agenda'],
  [u'situation'],
  [u'guy', u'pizza'],
  [u'robber', u'hostage', u'shield'],
  [u'guy', u'number', u'plan', u'robber'],
  [u'guy'],
  [u'authority',
   u'credential',
   u'hostage',
   u'situation',
   u'more?<br',
   u'document',
   u'time'],
  [u'woman'],
  [u'<br',
   u'end',
   u'movie',
   u'wall',
   u'supply',
   u'room',
   u'week',
   u'material'],
  [u'<br', u'plot', u'script', u'acting', u'yada', u'yada', u'yada']],
 [[u'waist', u'actor', u'movie'],
  [u'question', u'comment', u'robber'],
  [u'bank',
   u'worker',
   u'camera',
   u'footage',
   u'robber',
   u'entry',
   u'robber',
   u'hostage'],
  [u'moment', u'hostage', u'uniform', u'door', u'time'],
  [u'movie', u'music', u'score', u'shooting'],
  [u'movie']],
 [[u'movie', u'entirety', u'adoration', u'critic', u'user'],
  [u'western', u'phrase'],
  [u'movie', u'story', u'character', u'dialogue', u'dialogue', u'film'],
  [u'movie',
   u'groaner',
   u'minute',
   u'time',
   u'actor',
   u'actress',
   u'script',
   u'life'],
  [u'line', u'wave'],
  [u'<br', u'dialogue', u'gunfight'],
  [u'western', u'action'],
  [u'edge',
   u'gunfighting',
   u'choreography',
   u'gunplay',
   u'reason',
   u'movie',
   u'list',
   u'western'],
  [u'showdown',
   u'director',
   u'score',
   u'movie',
   u'saving.<br',
   u'flaw',
   u'visual',
   u'movie',
   u'setting'],
  [u'acting', u'actor'],
  [u'western', u'favor', u'rent', u'instead.<br']],
 [[u'performance'],
  [u'thing', u'story', u'line'],
  [u'film', u'end'],
  [u'action'],
  [u'problem'],
  [u'bit', u'time'],
  [u'time', u'movie', u'sale']],
 [[u'reboot', u'meal', u'book', u'movie', u'person'],
  [u'control',
   u'rage',
   u'it.<br',
   u'turn',
   u'display',
   u'conflict',
   u'personality',
   u'pulse',
   u'rate',
   u'beat',
   u'minute'],
  [u'reviewer',
   u'introduction',
   u'midi-chlorian',
   u'ability',
   u'blood',
   u'test'],
  [u'record', u'pulse', u'rate', u'run', u'person.<br', u'drive'],
  [u'memory', u'mother', u'death', u'father', u'role', u'life'],
  [u'surface', u'anger', u'rage'],
  [u'shooter',
   u'scene',
   u'fighter',
   u'jet',
   u'collision.<br',
   u'movie',
   u'effect'],
  [u'action',
   u'scene',
   u'plenty',
   u'plot',
   u'movie',
   u'action',
   u'sake',
   u'action.<br',
   u'quest',
   u'story',
   u'focus'],
  [u'effect', u'experiment'],
  [u'director', u'cue', u'dimension', u'relationship'],
  [u'repeat', u'thing', u'movie', u'book', u'version'],
  [u'fan',
   u'comic',
   u'movie',
   u'comic',
   u'fanboy',
   u'dream',
   u'heart',
   u'version',
   u'day.<br',
   u'comic'],
  [u'example', u'movie', u'comic-book', u'root', u'heart']],
 [[u'film', u'reviews'],
  [u'yesterday', u'network', u'incredible'],
  [u'fun', u'character'],
  [u'fact', u'face', u'computer', u'graphic', u'state'],
  [u'poodle', u'movie', u'ever.<br'],
  [u'way',
   u'movie',
   u'dare',
   u'action',
   u'scene',
   u'breaking',
   u'containment',
   u'chamber',
   u'base',
   u'tank',
   u'helicopter',
   u'desert',
   u'stratosphere',
   u'street'],
  [u'action', u'sequence', u'superhero', u'movie'],
  [u'feat.<br',
   u'course',
   u'father',
   u'sort',
   u'shape-shifting',
   u'villain',
   u'action',
   u'sequence',
   u'heroic',
   u'shame'],
  [u'dog', u'environment'],
  [u'appearance', u'thing', u'movie'],
  [u'version', u'time', u'moment'],
  [u'skin', u'tone', u'muscle', u'tone', u'creature', u'sort', u'texture'],
  [u'lighting', u'environment', u'effect', u'year', u'year'],
  [u'general', u'faker'],
  [u'love', u'credit', u'eye'],
  [u'monster'],
  [u'<br',
   u'version',
   u'chance',
   u'version',
   u'action',
   u'sequence',
   u'dialogue'],
  [u'scene'],
  [u'insult',
   u'audience',
   u'version',
   u'poodle',
   u'course).<br',
   u'filmmaker',
   u'feeling',
   u'movie']],
 [[u'screening', u'film'],
  [u'kid', u'slap-stick', u'fart', u'god', u'mouse', u'crotch', u'lot'],
  [u'movie', u'unintelligent'],
  [u'character', u'space', u'relationship', u'charm', u'all.<br', u'film'],
  [u'job', u'clay', u'imagery.<br', u'film', u'couple', u'time'],
  [u'failure'],
  [u'parent', u'kid', u'kid', u'cheap-joke', u'money']],
 [[u'month', u'debate', u'poster', u'film'],
  [u'argument', u'film.<br', u'intention', u'strength'],
  [u'asset', u'sewer', u'rat', u'captain', u'movie', u'character'],
  [u'cool',
   u'screen',
   u'time',
   u'sniveling.<br',
   u'thing',
   u'repetition',
   u'joke'],
  [u'tolerance',
   u'gag',
   u'pain',
   u'time',
   u'low.<br',
   u'waste',
   u'time',
   u'griping',
   u'kleptomaniac',
   u'tendency',
   u'film',
   u'coincidence']],
 [[u'movie', u'tonight'],
  [u'fan', u'film'],
  [u'point', u'film'],
  [u'visual',
   u'voice',
   u'work',
   u'notch',
   u'opinion',
   u'time',
   u'lizard',
   u'villain'],
  [u'problem', u'movie', u'feature'],
  [u'register',
   u'fact',
   u'slapstick',
   u'routine',
   u'treacle',
   u'plot',
   u'stop',
   u'attempt',
   u'message'],
  [u'lot', u'bait', u'category', u'way', u'critic', u'hardware'],
  [u'feature', u'rat', u'advice', u'wait']],
 [[u'action', u'film'],
  [u'movie', u'character', u'performance', u'direction'],
  [u'action', u'film', u'term', u'action', u'scene'],
  [u'action', u'film', u'year', u'genre'],
  [u'fan', u'memory'],
  [u'plenty', u'action', u'action', u'man', u'form'],
  [u'lover', u'film', u'hallmark', u'film'],
  [u'film', u'support']],
 [[u'year', u'movie'],
  [u'rat', u'palace'],
  [u'rat', u'city', u'girl', u'rat', u'gem', u'frog'],
  [u'gem', u'army', u'rats.he', u'gem', u'rat', u'city'],
  [u'movie', u'slug'],
  [u'effect'],
  [u'noise'],
  [u'line', u'year', u'old'],
  [u'movie', u'family', u'member'],
  [u'animation', u'dreamwork', u'art', u'wallace'],
  [u'movie']],
 [[u'movie', u'matter', u'person', u'movie', u'kid'],
  [u'theater', u'movie', u'cast'],
  [u'truth', u'silly'],
  [u'course', u'time', u'time', u'laugh'],
  [u'son', u'movie'],
  [u'daughter', u'half', u'way'],
  [u'kid', u'character', u'animation'],
  [u'daughter', u'nightmares.<br', u'type'],
  [u'quality', u'quality', u'movie']],
 [[u'half', u'half'],
  [u'animation', u'effect', u'movie', u'story', u'movie', u'meant', u'kid'],
  [u'adult', u'flick.<br', u'joke', u'adult']],
 [[u'shop', u'hell', u'movie'],
  [u'fan', u'fan', u'disgust'],
  [u'movie'],
  [u'character', u'frog', u'guy', u'movie', u'villain']],
 [[u'let',
   u'word',
   u'maker',
   u'film',
   u'chance',
   u'film',
   u'script',
   u'animation',
   u'story',
   u'thumbtack'],
  [u'bother', u'way', u'group', u'adult', u'child'],
  [u'kind',
   u'insult',
   u'film',
   u'filmmaker',
   u'child',
   u'idiot',
   u'claptrap',
   u'cost',
   u'effort',
   u'sweat',
   u'gag',
   u'adult']],
 [[u'film'],
  [u'line',
   u'song',
   u'worry',
   u'slug',
   u'toilet',
   u'roll',
   u'foot',
   u'leg',
   u'way',
   u'groin'],
  [u'fan', u'fan', u'disgust'],
  [u'animation'],
  [u'continuity', u'mistake', u'number'],
  [u'point',
   u'daughter',
   u'start',
   u'film',
   u'catch',
   u'cage',
   u'door',
   u'hook',
   u'round',
   u'knob'],
  [u'it.<br',
   u'want',
   u'word',
   u'joke',
   u'way',
   u'time',
   u'sort',
   u'connection',
   u'character',
   u'character',
   u'film',
   u'minute'],
  [u'paint', u'grass', u'option']],
 [[u'cage', u'metaphor', u'kid'],
  [u'plot-line'],
  [u'sewer',
   u'underworld',
   u'reflection',
   u'world',
   u'wealth',
   u'money',
   u'lot'],
  [u'female', u'pair', u'stereotype']],
 [[u'anybody', u'film'],
  [u'animation', u'standard', u'standard'],
  [u'frog', u'attempt', u'entertainment.<br'],
  [u'rat', u'relationship']],
 [[u'trailer'],
  [u'movie',
   u'fashion',
   u'point',
   u'audience',
   u'movie',
   u'play',
   u'out.<br',
   u'character',
   u'ex-girlfriend',
   u'check'],
  [u'buddy',
   u'personality',
   u'friend',
   u'girl',
   u'character',
   u'friend',
   u'friend',
   u'one-liner',
   u'case',
   u'bunch',
   u'movie',
   u'reference',
   u'guy',
   u'square',
   u'throw',
   u'message',
   u'check'],
  [u'girl',
   u'ex-boyfriend',
   u'parent',
   u'block',
   u'relationship',
   u'mean',
   u'thing',
   u'family',
   u'member',
   u'character',
   u'check'],
  [u'movie',
   u'moment',
   u'swearing',
   u'person',
   u'hit',
   u'scene',
   u'trailer',
   u'innuendos',
   u'check'],
  [u'publicity',
   u'crowd',
   u'kind',
   u'humor',
   u'medium',
   u'exposure',
   u'person',
   u'comedy',
   u'humor',
   u'movie',
   u'person'],
  [u'let', u'way', u'theater', u'laugh', u'screen'],
  [u'thing',
   u'hotness',
   u'looking).<br',
   u'resolution',
   u'film',
   u'lot',
   u'subplot',
   u'curb',
   u'story',
   u'movie',
   u'window'],
  [u'resolution'],
  [u'abruptness.<br', u'thing', u'worth', u'movie', u'soundtrack'],
  [u'choice', u'rock', u'song', u'score', u'movie', u'mix'],
  [u'prop',
   u'choice',
   u'sound.<br',
   u'thing',
   u'movie',
   u'summer',
   u'sponsorship',
   u'bottle',
   u'cap',
   u'promotion'],
  [u'pg-13', u'year', u'night', u'group', u'friend', u'knock'],
  [u'movie', u'year']],
 [[u'movie',
   u'potential',
   u'bewilderment',
   u'theme',
   u'theater',
   u'idea',
   u'generation'],
  [u'decerebrate', u'oaf', u'film', u'dog'],
  [u'buck'],
  [u'moment', u'trailer', u'trailer', u'performance'],
  [u'relief', u'friend', u'penchant', u'film', u'analogy', u'home', u'speech'],
  [u'plastic', u'creature', u'face', u'smile', u'friend'],
  [u'gentleman',
   u'brunette',
   u'premise',
   u'society',
   u'love',
   u'facade',
   u'way',
   u'dude',
   u'shaving',
   u'scrotum',
   u'ejaculation',
   u'allusion',
   u'happiness',
   u'scene',
   u'denouement',
   u'family',
   u'dog'],
  [u'movie', u'joke', u'ball', u'sewage'],
  [u'marketing', u'shine', u'mass', u'gold', u'person']],
 [[u'guilt',
   u'lot',
   u'thing',
   u'ledge',
   u'ace',
   u'mountain',
   u'rescue',
   u'climber',
   u'girlfriend',
   u'sky',
   u'weather',
   u'bit',
   u'threatening',
   u'mid-air',
   u'hijacking',
   u'plane',
   u'middle',
   u'crash',
   u'landing\x85',
   u'<br',
   u'peak',
   u'mountain',
   u'guide',
   u'cash',
   u'hiker',
   u'emergency',
   u'help',
   u'rescue',
   u'unit\x85',
   u'<br',
   u'team',
   u'scene',
   u'crash',
   u'distress',
   u'bunch',
   u'terrorist',
   u'way',
   u'mountain',
   u'case',
   u'money\x85',
   u'<br',
   u'shot',
   u'scenery',
   u'height',
   u'temperature',
   u'action',
   u'adventure',
   u'movie\x85']],
 [[u'movie', u'letdown'],
  [u'movie', u'movie', u'theater'],
  [u'movie', u'movie', u'humor', u'storyline', u'movie'],
  [u'movie', u'waste', u'time'],
  [u'movie', u'actor', u'movie', u'chemistry'],
  [u'actor', u'play', u'time', u'movie', u'movie'],
  [u'job', u'actress', u'chemistry'],
  [u'actor', u'movie', u'affect', u'movie'],
  [u'humor', u'movie', u'liner', u'movie', u'friend'],
  [u'time', u'romance', u'comedy'],
  [u'movie', u'writer', u'director'],
  [u'storyline',
   u'movie',
   u'girl',
   u'guy',
   u'story\x85boring',
   u'originality',
   u'letdown']],
 [[u'script'],
  [u'hangover', u'comedy', u'joke', u'way', u'field'],
  [u'chick',
   u'personality',
   u'thirty',
   u'chick',
   u'ass',
   u'non-underwear',
   u'joke'],
  [u'attraction', u'chick', u'love'],
  [u'attraction', u'relationship', u'seat', u'belt', u'mishap', u'kiss'],
  [u'relationship'],
  [u'focus',
   u'movie',
   u'relationship',
   u'attempt',
   u'super-bad-esquire',
   u'movie',
   u'semi',
   u'plot'],
  [u'hangover', u'nature']],
 [[u'comedy', u'manner', u'wittiest', u'play', u'hand', u'cast'],
  [u'role', u'rest', u'cast', u'procedure', u'waste', u'time'],
  [u'stage',
   u'accent',
   u'sentence',
   u'member',
   u'melodrama',
   u'comedy',
   u'production',
   u'bookend',
   u'tragedy',
   u'office'],
  [u'direction', u'plenty', u'servant', u'music'],
  [u'farce', u'screen', u'version', u'play', u'pleasure', u'word']],
 [[u'action', u'movie', u'schtick'],
  [u'money.<br'],
  [u'battle'],
  [u'soldier'],
  [u'victim'],
  [u'bunch',
   u'explosions.<br',
   u'movie',
   u'rescue',
   u'you!<br',
   u'attack',
   u'village'],
  [u'row', u'seat', u'cleansing', u'slaughter', u'town'],
  [u'body', u'count', u'guy', u'chopper', u'child'],
  [u'<br', u'movie'],
  [u'plot', u'night']],
 [[u'acting', u'screenplay', u'movie'],
  [u'hollywood',
   u'war',
   u'film',
   u'end',
   u'time',
   u'appeal',
   u'public',
   u'greatness',
   u'glory',
   u'war'],
  [u'war', u'movie', u'quality', u'war'],
  [u'film',
   u'bunch',
   u'guy',
   u'countryside',
   u'cliche',
   u'line',
   u'thing',
   u'force',
   u'brutality']],
 [[u'film'],
  [u'case',
   u'i-need-this-to-happen-or-we-have-no-movie',
   u'scenario',
   u'mission',
   u'doctor',
   u'person',
   u'chopper',
   u'refugee',
   u'border'],
  [u'doctor', u'chemistry'],
  [u'waste', u'time', u'tear', u'rental', u'fee'],
  [u'day']],
 [[u'me.<br', u'plot'],
  [u'minute', u'end'],
  [u'soldier', u'order'],
  [u'danger', u'heck', u'order', u'remember).<br', u'scene', u'movie'],
  [u'village', u'population', u'rebel'],
  [u'truck', u'rebel'],
  [u'road', u'explanation'],
  [u'movie',
   u'point',
   u'it.<br',
   u'movie',
   u'insult',
   u'brain',
   u'group',
   u'soldier',
   u'rebel'],
  [u'grenade', u'machine', u'gun'],
  [u'crap.<br',
   u'guess',
   u'brain',
   u'rebel',
   u'bunch',
   u'idiot',
   u'movie',
   u'rating']],
 [[u'stand', u'film'],
  [u'battle', u'scene', u'doubt', u'lady'],
  [u'warrior', u'point', u'design'],
  [u'film', u'landscape', u'castle'],
  [u'film', u'character', u'accent', u'film'],
  [u'film', u'civilisation.<br', u'film', u'family'],
  [u'bored.<br', u'adult', u'lack', u'realism']],
 [[u'film', u'money'],
  [u'story', u'soap', u'opera'],
  [u'soap', u'opera', u'quality'],
  [u'fan', u'actor', u'shame'],
  [u'plastic', u'surgery', u'need'],
  [u'comment', u'girl'],
  [u'saffron', u'role']],
 [[u'fantasy', u'admission'],
  [u'everybody', u'talk', u'star', u'star'],
  [u'territory'],
  [u'spade', u'course', u'time']],
 [[u'world', u'action', u'movie'],
  [u'punk',
   u'rule',
   u'rescue',
   u'climber',
   u'town',
   u'friend',
   u'rescue',
   u'mountain',
   u'peak'],
  [u'time', u'person', u'team', u'thieve'],
  [u'lot', u'money', u'government', u'clone'],
  [u'trade',
   u'confine',
   u'mountain',
   u'range',
   u'scene',
   u'weakness',
   u'hero'],
  [u'shred',
   u'character',
   u'number',
   u'bullet',
   u'ease',
   u'rock',
   u'side-effect'],
  [u'action', u'movie', u'action', u'movie'],
  [u'showcase', u'scene', u'stunt'],
  [u'stunt',
   u'stunt',
   u'movie',
   u'rest',
   u'movie',
   u'beginning',
   u'action',
   u'awesomeness'],
  [u'lead', u'villain', u'dude'],
  [u'quite',
   u'lead',
   u'villain',
   u'ever.<br',
   u'effort',
   u'effort',
   u'action',
   u'movie']],
 [[u'difference', u'course'],
  [u'monkey', u'self', u'humor'],
  [u'photograph',
   u'semi',
   u'ravishing',
   u'sprint',
   u'position',
   u'wall',
   u'legion',
   u'fan'],
  [u'film', u'century'],
  [u'chance']],
 [[u'opinion', u'history', u'man'],
  [u'movie.<br', u'hair', u'makeup'],
  [u'cameo', u'scene', u'day', u'director', u'alright'],
  [u'ok'],
  [u'<br', u'greek', u'man', u'accent'],
  [u'accent',
   u'screen.<br',
   u'camera.<br',
   u'line',
   u'me."<br',
   u'music',
   u'music.<br',
   u'thigh',
   u'way',
   u'up.<br',
   u'male',
   u'friend'],
  [u'mind',
   u'history',
   u'says.<br',
   u'story',
   u'expression.<br',
   u'god',
   u'statue',
   u'egyptian',
   u'drag.<br',
   u'man',
   u'men.<br',
   u'thousand',
   u'extra',
   u'movie',
   u'skin',
   u'color',
   u'light',
   u'egyptian',
   u'lot',
   u'news',
   u'desert',
   u'locale',
   u'ability',
   u'timber',
   u'pyre',
   u'horse',
   u'like.<br',
   u'actor',
   u'greek',
   u'hairdos.<br',
   u'change',
   u'expression',
   u'sun',
   u'eyes.<br',
   u'soldier',
   u'fought',
   u'outfit',
   u'impeccable.<br',
   u'soldier',
   u'underwear',
   u'skirts.<br',
   u'temple',
   u'ruin']],
 [[u'grade', u'odyssey', u'grade'],
  [u'disappointment', u'campus', u'epos', u'literature'],
  [u'poet', u'year', u'war'],
  [u'historian', u'war', u'reason', u'war', u'beauty', u'position'],
  [u'epos', u'event', u'purpose', u'work'],
  [u'<br',
   u'poem',
   u'definition',
   u'honour',
   u'anger',
   u'hate',
   u'heroism',
   u'discipline',
   u'loyalty'],
  [u'talk', u'warrior', u'battle'],
  [u'eye', u'person', u'colleague'],
  [u'shame', u'million', u'dollar', u'scenario'],
  [u'way',
   u'storm',
   u'blockbuster',
   u'computer',
   u'graphic',
   u'work',
   u'work'],
  [u'<br'],
  [u'movie.<br']],
 [[u'hope'],
  [u'dialogue',
   u'laughable',
   u'film',
   u'fight',
   u'scene',
   u'rest',
   u'story',
   u'consumer',
   u'approval'],
  [u'war', u'year', u'wall', u'arrow', u'ankle'],
  [u'story', u'soap.<br', u'lack', u'chemistry'],
  [u'woman', u'war', u'deal'],
  [u'spark', u'emotion', u'hope.<br', u'film', u'script', u'movie'],
  [u'tree', u'pyre', u'trees?<br']],
 [[u'enthusiasm', u'advance', u'screening', u'movie'],
  [u'tale', u'mankind', u'epic', u'tale', u'kid'],
  [u'plot', u'joke', u'thing', u'soap', u'opera'],
  [u'element',
   u'faithful',
   u'plot',
   u'manner',
   u'audience',
   u'time',
   u'script',
   u'service',
   u'battle',
   u'battle'],
  [u'disappointment',
   u'character',
   u'combination',
   u'power',
   u'ruthlessness',
   u'male',
   u'lover',
   u'poem',
   u'turn',
   u'beach',
   u'guise',
   u'script',
   u'effort',
   u'warrior',
   u'figure'],
  [u'actor', u'script'],
  [u'waste', u'talent'],
  [u'plenty',
   u'hunk',
   u'lady',
   u'battle',
   u'scene',
   u'movie',
   u'battle',
   u'siege']],
 [[u'film', u'experiment', u'experiment'],
  [u'filmmaker', u'problem', u'denominator'],
  [u'manner', u'money', u'exploitation'],
  [u'step', u'filmmaker', u'meeting', u'expert', u'attempt'],
  [u'filmmaker', u'posterior', u'situation'],
  [u'filmmaker', u'month', u'subject', u'month'],
  [u'expert'],
  [u'film', u'high-brow', u'jackass', u'stunt', u'documentary'],
  [u'person', u'life', u'hand']],
 [[u'man', u'money', u'trap', u'rat', u'race'],
  [u'person'],
  [u'mortgage', u'rent', u'payment', u'boss'],
  [u'person', u'performance', u'reviews', u'credit', u'card', u'payment'],
  [u'chance', u'citizen'],
  [u'film', u'film'],
  [u'way', u'sheeple'],
  [u'arrogance.<br', u'film', u'man']],
 [[u'picture'],
  [u'tv', u'lot', u'panhandler', u'day', u'day', u'reality'],
  [u'sign',
   u'work',
   u'work',
   u'id',
   u'sure',
   u'prepaid',
   u'year',
   u'bank',
   u'cash',
   u'game',
   u'casino'],
  [u'bankroll'],
  [u'cause', u'risk', u'spending', u'money', u'sock'],
  [u'contact', u'yahoo', u'person', u'fact', u'smoke', u'drug'],
  [u'housing', u'month', u'time', u'poker'],
  [u'day',
   u'hiding',
   u'stage',
   u'convention',
   u'center',
   u'casino',
   u'night',
   u'sleeping',
   u'security']],
 [[u'man'],
  [u'creator',
   u'giggle',
   u'antic',
   u'kind',
   u'experiment.<br',
   u'man',
   u'life'],
  [u'guidance', u'counseling', u'way.<br'],
  [u'man', u'fun', u'fall', u'altitude'],
  [u'sow',
   u'music',
   u'camera',
   u'shot',
   u'end',
   u'ground',
   u'car',
   u'crash',
   u'video',
   u'time',
   u'car',
   u'crash',
   u'sign']],
 [[u'notch'],
  [u'writer', u'table', u'word', u'poop', u'laugh'],
  [u'foot', u'kid', u'dunk', u'foot', u'basketball', u'net'],
  [u'kidnapper',
   u'gun',
   u'kidnapper',
   u'month',
   u'karate',
   u'training',
   u'sword'],
  [u'thing', u'movie', u'gang', u'world', u'anybody'],
  [u'guy', u'movie', u'laugh']],
 [[u'title',
   u'meaning',
   u'boxing',
   u'ring',
   u'difference',
   u'grievance',
   u'wedding',
   u'ring',
   u'trouble',
   u'cause',
   u'trouble',
   u'bracelet',
   u'love'],
  [u'<br', u'boxer', u'start', u'film'],
  [u'career', u'movie', u'eye', u'girl', u'fun'],
  [u'round', u'win', u'boxer', u'manager', u'fighter'],
  [u'trainer', u'fortune', u'plan'],
  [u'fight', u'day', u'attraction', u'feel'],
  [u'training',
   u'wife.<br',
   u'boxing',
   u'movie',
   u'hero',
   u'rail',
   u'champion',
   u'way'],
  [u'minute', u'film'],
  [u'round', u'courage', u'triumph'],
  [u'film', u'you.<br']],
 [[u'humor'],
  [u'film'],
  [u'movie', u'omen', u'thing', u'time', u'killer', u'laugh']],
 [[u'character', u'stereotype', u'writer'],
  [u'stunt', u'man', u'usage', u'scene'],
  [u'line', u'dude', u'dump', u'time', u'ass']],
 [[u'bit',
   u'fan',
   u'art',
   u'film',
   u'bit',
   u'cheesy.<br',
   u'program',
   u'kid',
   u'power',
   u'ranger',
   u'kid'],
  [u'parent',
   u'film',
   u'maker',
   u'reality',
   u'kid',
   u'punching',
   u'everyone.<br',
   u'kid',
   u'movie',
   u'point',
   u'kid',
   u'message',
   u'message',
   u'difference',
   u'thing',
   u'movie',
   u'quality'],
  [u'acting'],
  [u'actor', u'fart', u'ninja'],
  [u'kid', u'way', u'kid', u'actor', u'movie', u'plot', u'review'],
  [u'yea', u'bunch', u'guy'],
  [u'anyone.<br'],
  [u'kid', u'movie', u'kid', u'movie'],
  [u'child',
   u'garbage',
   u'art',
   u'acting',
   u'reality',
   u'period',
   u'movie',
   u'kid',
   u'kid',
   u'girl',
   u'girl',
   u'crush',
   u'star',
   u'movie',
   u'kid',
   u'adult',
   u'movie',
   u'time',
   u'child',
   u'kung',
   u'tv',
   u'series',
   u'ton',
   u'film',
   u'child',
   u'thing',
   u'way',
   u'man',
   u'leg',
   u'grandpa',
   u'man',
   u'leg']],
 [[u'movie', u'reviews'], [u'slasher', u'flick', u'reviews', u'movie']],
 [[u'film'],
  [u'decision',
   u'character',
   u'performance',
   u'lot',
   u'fanatic',
   u'attitude',
   u'attitude',
   u'writer',
   u'way',
   u'character',
   u'tattoo',
   u'crucifix'],
  [u'case', u'movie']],
 [[u"film'o",
   u'book',
   u'fine',
   u'performance',
   u'actor',
   u'end',
   u'plot',
   u'twist',
   u'shakespearean',
   u'demise',
   u'watch.<br',
   u'actor',
   u'work',
   u'direction',
   u'talent',
   u'minute',
   u'film.<br',
   u'cameo',
   u'fun',
   u'line',
   u'this.<br',
   u'performance',
   u'oil',
   u'form',
   u'weed'],
  [u'line', u'talent', u'generation.<br', u'point'],
  [u'view',
   u'dip',
   u'prison',
   u'scene',
   u'baseball',
   u'bat',
   u'panic',
   u'prescence.<br'],
  [u'underside', u'car', u'mile', u'speed'],
  [u'parts', u'rambling', u'ending.<br', u'year']],
 [[u'collaboration', u'mess'],
  [u'element',
   u'film',
   u'horror',
   u'phone',
   u'ringing',
   u'door',
   u'gimmick',
   u'embarrassing',
   u'master',
   u'craftsman'],
  [u'cast', u'accent'],
  [u'movie', u'psycho', u'killer'],
  [u'scene', u'climax', u'psycho', u'stalker'],
  [u'movie'],
  [u'time']],
 [[u'movie', u'entertaining', u'ability'],
  [u'use', u'stylistic', u'number', u'movie', u'director'],
  [u'film', u'flourish', u'business'],
  [u'film', u'stock', u'setting', u'distraction'],
  [u'close-up', u'imitation', u'smirk', u'derision', u'sense', u'terror'],
  [u'score', u'homage'],
  [u'cast',
   u'time',
   u'performance',
   u'caricature',
   u'exception',
   u'turn',
   u'daughter',
   u'family.<br',
   u'offender'],
  [u'sure', u'mouth', u'aura', u'drain'],
  [u'expert', u'accent', u'drawl'],
  [u'actor', u'flaw'],
  [u'fan',
   u'screen',
   u'performance.<br',
   u'spoilers.)<br',
   u'style',
   u'movie',
   u'finale'],
  [u'situation', u'tension', u'viewer', u'bombardment'],
  [u'reputation',
   u'killer-not-dead-yet',
   u'trick',
   u'individual',
   u'thriller'],
  [u'work']],
 [[u'movie', u'grade', u'scale', u'movie', u'thriller'],
  [u'thriller',
   u'woman',
   u'press',
   u'charge',
   u'court',
   u'man',
   u'arm',
   u'crap',
   u'life',
   u'lawyer',
   u'feeling',
   u'family',
   u'person'],
  [u'problem',
   u'movie',
   u'kind',
   u'movie',
   u'question',
   u'bastard',
   u'bent',
   u'revenge',
   u'lawyer',
   u'family',
   u'rape',
   u'daughter',
   u'bit'],
  [u'life', u'movie', u'life', u'way', u'hour']],
 [[u'thriller', u'thing', u'psycho'],
  [u'finale', u'genre', u'villain'],
  [u'version', u'improvement'],
  [u'movie', u'movie', u'favourite', u'actress', u'girl', u'comparison']],
 [[u'movie', u'user', u'ranking'],
  [u'credit'],
  [u'sister', u'day', u'month'],
  [u'reason'],
  [u'disaster', u'scene', u'forgot', u'baby', u'guy', u'suicide', u'crowd'],
  [u'person', u'ship', u'film', u'immediacy', u'emotion', u'challenge'],
  [u'romance'],
  [u'relationship', u'figment', u'imagination'],
  [u'film'],
  [u'story', u'acting', u'cinematography', u'music', u'crew', u'worker']],
 [[u'round', u'prize', u'way', u'customer'],
  [u'fight', u'champ', u'work'],
  [u'boxer'],
  [u'way', u'ranking', u'meantime', u'start'],
  [u'fight'],
  [u'rage', u'help', u'performance'],
  [u'see.<br',
   u'film',
   u'today',
   u'sort',
   u'film',
   u'director',
   u'mystery-suspense',
   u'film',
   u'genre',
   u'film'],
  [u'fact', u'way', u'film', u'style', u'plot', u'silent', u'husband'],
  [u'lot',
   u'boxing',
   u'film',
   u'day',
   u'departure',
   u'director',
   u'ending.<br',
   u'bit',
   u'boxing',
   u'champ',
   u'film'],
  [u'punch']],
 [[u'fear', u'fear', u'film'],
  [u'fan',
   u'fear',
   u'scene',
   u'film',
   u'key',
   u'ignition',
   u'dog',
   u'score',
   u'film',
   u'lot',
   u'opportunity',
   u'comparison',
   u'fear',
   u'scene'],
  [u'version',
   u'fear',
   u'version',
   u'film',
   u'screenwriter',
   u'fear',
   u'scene',
   u'scene',
   u'thing'],
  [u'revenge', u'version', u'fanatic', u'touch', u'word'],
  [u'fear', u'film'],
  [u'character'],
  [u'story',
   u'court',
   u'jail',
   u'version',
   u'ex-lawyer',
   u'jail',
   u'him.<br',
   u'story',
   u'script'],
  [u'sub-plot', u'mix', u'picture'],
  [u'film', u'scene', u'line', u'bit'],
  [u'aspect',
   u'nature',
   u'film',
   u'help',
   u'department',
   u'well.<br',
   u'version',
   u'fear',
   u'lighting',
   u'subtlety',
   u'brutality',
   u'thrill',
   u'film',
   u'sense',
   u'danger',
   u'entirety'],
  [u'fear',
   u'film',
   u'cookie-cutter',
   u'sense',
   u'danger',
   u'scene',
   u'style',
   u'skyline',
   u'style'],
  [u'violence', u'effort', u'fear', u'shock', u'awe.<br', u'acting'],
  [u'performance', u'scare', u'end', u'film'],
  [u'thing',
   u'performance',
   u'film',
   u'display',
   u'fear',
   u'desperation',
   u'end'],
  [u'film'],
  [u'nomination',
   u'role',
   u'character',
   u'screen',
   u'her.<br',
   u'film',
   u'remake',
   u'figure'],
  [u'comparison', u'fear', u'fear', u'film'],
  [u'thing', u'film', u'role', u'figure']],
 [[u'lot', u'review', u'movie'],
  [u'ex-con', u'family', u'target'],
  [u'syrup'],
  [u'memorandum', u'ham', u'eyebrow', u'bitch', u'way', u'cigarette'],
  [u'sort', u'accent', u'hybrid', u'cigar', u'cackle', u'atrocity'],
  [u'rhetoric', u'volume', u'bible', u'schtick'],
  [u'distracting', u'use', u'face'],
  [u'story', u'year', u'time', u'bighouse', u'assault'],
  [u'character', u'pass', u'information', u'sentence'],
  [u'criminal', u'act', u'lack', u'freedom', u'act'],
  [u'shortcoming', u'screenplay', u'predictability'],
  [u'harassment', u'rest', u'action'],
  [u'moment', u'exchange', u'theater', u'film', u'scene'],
  [u'approach', u'score', u'tarantula).<br', u'portion', u'flick'],
  [u'scene', u'snicker', u'sight'],
  [u'squawking',
   u'infidelity',
   u'thumb-flirting',
   u'kitchen',
   u'slip',
   u'substance'],
  [u'sight', u'blowhard', u'rambling', u'philosophy', u'prison'],
  [u'family.<br', u'thought', u'reviewer'],
  [u'manner', u'stalk', u'pain', u'one-liner'],
  [u'pot', u'water', u'sumpin'],
  [u'example.<br',
   u'fan',
   u'flick',
   u'thrill',
   u'year',
   u'film',
   u'experience',
   u'trip']],
 [[u'pain', u'film'],
  [u'family', u'monster', u'form', u'prison'],
  [u'family',
   u'band',
   u'beast',
   u'beast',
   u'creation',
   u'father',
   u'lawyer',
   u'trial'],
  [u'<br', u'fashion', u'father', u'monster', u'family', u'sin'],
  [u'daddy',
   u'figure',
   u'land',
   u'father',
   u'duty',
   u'kind',
   u'coda',
   u'picture',
   u'project',
   u'time',
   u'hand',
   u'fare'],
  [u'result',
   u'film',
   u'filmography',
   u'artist',
   u'failure',
   u'misfire',
   u'working',
   u'story',
   u'work',
   u'character',
   u'image',
   u'kind',
   u'core'],
  [u'carcass',
   u'director',
   u'cinema',
   u'fear',
   u'film',
   u'connection',
   u'rest',
   u'filmography'],
  [u'film', u'theme', u'redemption', u'cookie', u'cutter'],
  [u'watch',
   u'camera',
   u'whip',
   u'doorknob',
   u'window',
   u'attempt',
   u'tension',
   u'character',
   u'attention'],
  [u'watch', u'film', u'sense'],
  [u'showdown',
   u'boat',
   u'end',
   u'film',
   u'place',
   u'sound-stage',
   u'street',
   u'parade',
   u'place',
   u'context',
   u'family',
   u'house'],
  [u'sense', u'picture', u'film', u'space', u'kind', u'environment'],
  [u'<br', u'reason', u'camera', u'character'],
  [u'street',
   u'building',
   u'tour',
   u'future',
   u'cityscape',
   u'alien',
   u'desert',
   u'planet',
   u'director',
   u'sense',
   u'space',
   u'textbook',
   u'shot',
   u'combination'],
  [u'poetry', u'sense', u'space', u'film'],
  [u'style',
   u'shooting',
   u'way',
   u'prerequisite',
   u'action',
   u'film-making.<br',
   u'problem',
   u'gang',
   u'space',
   u'set',
   u'character',
   u'self',
   u'experiment',
   u'magnetism',
   u'actor',
   u'camera',
   u'moth',
   u'bulb.<br',
   u'b-movie',
   u'film'],
  [u'matte',
   u'painting',
   u'attempt',
   u'tension',
   u'silly',
   u'effect',
   u'fistfight',
   u'showdown'],
  [u'body', u'film', u'scene'],
  [u'sequence', u'thumb', u'mouth', u'kiss'],
  [u'kind', u'rape', u'girl', u'man', u'interest.<br', u'performance'],
  [u'tone', u'visual', u'work']],
 [[u'movie'], [u'movie', u'movie', u'character']],
 [[u'kind', u'music', u'person', u'movie'],
  [u'home', u'movie', u'mom', u'troupe', u'movie', u'it.<br'],
  [u'series', u'annoyance']],
 [[u'clich\xe9d'],
  [u'screen', u'chemistry'],
  [u'writing', u'line', u'custom'],
  [u'feeling', u'sadness', u'moment', u'sequel', u'emotion', u'audience'],
  [u'film', u'insult', u'quality', u'sort', u'drivel', u'installment'],
  [u'mask', u'sequel', u'time'],
  [u'case', u'ring']],
 [[u'writer', u'story', u'genre', u'movie'],
  [u'action', u'adventure', u'mess'],
  [u'movie'],
  [u'rating'],
  [u'movie', u'movie']],
 [[u'effect',
   u'movie',
   u'time',
   u'way',
   u'existance.<br',
   u'redefine',
   u'term',
   u'hand',
   u'bad".<br',
   u'charm',
   u'movie',
   u'thing',
   u'casting',
   u'lurch',
   u'sense',
   u'person',
   u'there.<br',
   u'combination',
   u'sf-western',
   u'gunman',
   u'sense',
   u'pain',
   u'person',
   u'shoot',
   u'acting',
   u'here).<br',
   u'movie',
   u'hunk-o-brutal']],
 [[u'film', u'failure'],
  [u'fan', u'idea', u'cheese', u'script'],
  [u'parody'],
  [u'yuck.<br', u'user', u'comment', u'rating', u'film']],
 [[u'you`ll', u'image', u'handful', u'person'],
  [u'problem', u'film', u'version', u'you`ll', u'black']],
 [[u'love', u'triangle', u'film', u'mystery'],
  [u'boxer', u'circus', u'boxer', u'partner'],
  [u'lot',
   u'character',
   u'actor',
   u'wedding',
   u'standing',
   u'aisle',
   u'church',
   u'register',
   u'shock',
   u'sight',
   u'man',
   u'lady',
   u'twin',
   u'course',
   u'aisle',
   u'wedding',
   u'feast'],
  [u'camera', u'angle', u'pace', u'use', u'symbol'],
  [u'look']],
 [[u'movie', u'egg'],
  [u'tv',
   u'series',
   u'premise',
   u'tv',
   u'series',
   u'confusing',
   u'tv',
   u'series',
   u'cast',
   u'actor',
   u'character',
   u'prank'],
  [u'premise', u'movie', u'trouble'],
  [u'stinker', u'time']],
 [[u'movie'],
  [u'material', u'army', u'life', u'laugh', u'star', u'movie', u'fall'],
  [u'couple', u'chuckle'],
  [u'role']],
 [[u'remake', u'comedy'],
  [u'towner', u'movie', u'face'],
  [u'anybody', u'performance', u'movie'],
  [u'character', u'person', u'work'],
  [u'statement', u'movie', u'line', u'credit', u'movie'],
  [u'line', u'producer', u'lack', u'cooperation', u'line', u'laugh'],
  [u'episode'],
  [u'movie', u'category']],
 [[u'comment',
   u'<br',
   u'fogey',
   u'generation',
   u'picture',
   u'etc.<br',
   u'year',
   u'pleasure',
   u'courtesy'],
  [u'travesty', u'reviewer', u'movie'],
  [u'minute', u'life', u'episode'],
  [u'doberman', u'et', u'al', u'film', u'pint']],
 [[u'year', u'world', u'war', u'state', u'segment', u'economy'],
  [u'time',
   u'draft',
   u'war',
   u'society',
   u'minigenre',
   u'notion',
   u'cleverness',
   u'midst',
   u'machine'],
  [u'machine', u'military', u'example', u'prisoner', u'war', u'situation'],
  [u'story',
   u'machine',
   u'science',
   u'fiction',
   u'reference',
   u'genre',
   u'testosterone',
   u'shot',
   u'action',
   u'reference',
   u'sibling.<br',
   u'trace',
   u'meaning',
   u'section'],
  [u'wave', u'catch', u'life', u'book', u'movie', u'case'],
  [u'man', u'crime', u'response', u'life'],
  [u'way', u'crack', u'control', u'freedom'],
  [u'<br', u'zone', u'american', u'context', u'zone', u'party', u'laugh'],
  [u'twist', u'misfit', u'fo', u'sort'],
  [u'adventure.<br', u'war'],
  [u'spot', u'remake'],
  [u'root', u'player'],
  [u'way', u'society', u'power.<br', u'evaluation', u'life']],
 [[u'movie'],
  [u'dreck', u'reputation', u'man'],
  [u'person', u'grip', u'fact', u'person', u'movie'],
  [u'movie', u'comedy'],
  [u'metal', u'jacket', u'excuse', u'service', u'comedy']],
 [[u'irishman'],
  [u'light'],
  [u'energy', u'wit', u'drive', u'upbringing', u'education', u'life'],
  [u'series',
   u"you'll",
   u'title',
   u'role',
   u'picture',
   u'actor',
   u'business',
   u'stripes.<br',
   u'identification',
   u'sort',
   u'nightmare',
   u'guy',
   u'uncle',
   u"croc's",
   u'stumbling',
   u'block',
   u'work',
   u'tv',
   u'screen',
   u'public',
   u'memory'],
  [u'percentage',
   u'crowd',
   u'character',
   u'run',
   u'syndication',
   u'revival',
   u'number',
   u'segment',
   u'rerun',
   u'time'],
  [u'film',
   u'source',
   u'mile',
   u'year',
   u'grouch',
   u'points.<br',
   u'today',
   u'year',
   u'fan',
   u'year',
   u'wit',
   u'talent'],
  [u'talent', u'guy', u'night', u'tv', u'quarter', u'century'],
  [u'identity',
   u'self',
   u'guy',
   u'me.<br',
   u'sitcom',
   u'cartoon',
   u'series',
   u'movie'],
  [u'howse',
   u'somebody',
   u'tv',
   u'cartoon',
   u'series',
   u'crusader',
   u'rabbit']],
 [[u'scottish', u'opinion', u'man', u'posterior', u'point', u'direction'],
  [u'man',
   u'doubt',
   u'writer',
   u'director',
   u'team',
   u'character',
   u'series',
   u'dateless',
   u'situation',
   u'comedy'],
  [u'thing',
   u'exercise',
   u'attempt',
   u'seller',
   u'attempt',
   u'opinion',
   u'career']],
 [[u'comedy'],
  [u'film',
   u'inspiration',
   u'role',
   u'army',
   u'sergeant',
   u'scam',
   u'nose',
   u'superior'],
  [u'life', u'platoon', u'enemy', u'base', u'act'],
  [u'couple', u'laugh', u'sheer', u'effort', u'material']],
 [[u'film', u'paper'],
  [u'comedy',
   u'lover',
   u'thriller',
   u'cross-breeding',
   u'gold',
   u'cast.<br',
   u'star',
   u'rope'],
  [u'script'],
  [u'ping-pong',
   u'romance',
   u'reason',
   u'cop-with-a-heart',
   u'guess',
   u'star-with-a-part']],
 [[u'visual', u'film'],
  [u'plot', u'film', u'boxer', u'girl', u'drama'],
  [u'talent', u'use', u'image'],
  [u'shot', u'symbol'],
  [u'jewelry', u'boxer', u'girl', u'boxer'],
  [u'arm', u'way', u'movement'],
  [u'boxing', u'scene', u'point-of-view', u'shot', u'time'],
  [u'film', u'insight', u'treatment', u'woman'],
  [u'woman',
   u'film',
   u'party',
   u'girl',
   u'offer',
   u'sex',
   u'crone',
   u'relationship'],
  [u'work', u'development', u'storyteller']],
 [[u'self', u'ticky', u'schtick'], [u'guy', u'chill']],
 [[u'premise', u'character', u'dialogue'],
  [u'<br',
   u'fan',
   u'accent',
   u'hour',
   u'pick',
   u'kewpie',
   u'doll',
   u'baby',
   u'puppy',
   u'kitten',
   u'creature'],
  [u'resemblance',
   u'being.<br',
   u'movie',
   u'opportunity',
   u'buddy',
   u'vacation',
   u'south']],
 [[u'actress',
   u'role',
   u'watching.<br',
   u'movie.<br',
   u'character',
   u'whiner',
   u'grating',
   u'nerve',
   u'credit',
   u'day'],
  [u'character']],
 [[u'film', u'premise', u'cartoon'],
  [u'reality', u'military', u'film', u'gender', u'equality'],
  [u'commentator', u'woman'],
  [u'man',
   u'woman',
   u'seal',
   u'week',
   u'program',
   u'session',
   u'gym',
   u'desire'],
  [u'dropout',
   u'rate',
   u'training',
   u'program',
   u'level',
   u'injury',
   u'training',
   u'harassment'],
  [u'shallowness', u'message', u'film'],
  [u'world', u'hour', u'training'],
  [u'film', u'thinking', u'time', u'description', u'training']],
 [[u'film'],
  [u'director'],
  [u'film', u'mark', u'career'],
  [u'film', u'girl', u'army'],
  [u'film'],
  [u'writer', u'inspiration', u'dialog', u'sense', u'action'],
  [u'person',
   u'project',
   u'type',
   u'film',
   u'attention',
   u'future',
   u'movie',
   u'mess']],
 [[u'film', u'film'],
  [u'film'],
  [u'sweat', u'lot', u'music', u'fight'],
  [u'idea', u'film', u'kind', u'script']],
 [[u'disappointment', u'master'],
  [u'story', u'female', u'training'],
  [u'training', u'existence', u'instructor', u'film', u'character'],
  [u'message', u'point', u'film'],
  [u'kind',
   u'statement',
   u'right',
   u'ability',
   u'scene',
   u'gun',
   u'fight',
   u'end',
   u'film.<br',
   u'gun',
   u'battle',
   u'desert'],
  [u'director', u'technique'],
  [u'film', u'battle', u'scene', u'plenty', u'skill'],
  [u'finale',
   u'shooting',
   u'killing.<br',
   u'movie',
   u'opinion',
   u'touch',
   u'director'],
  [u'format',
   u'couple',
   u'scene',
   u'sample',
   u'ability',
   u'film.<br',
   u'disappointment',
   u'classic',
   u'director']],
 [[u'course', u'woman', u'clich\xe9', u'movie'],
  [u'performance', u'movie', u'hell', u'minute'],
  [u'credit', u'movie', u'woman', u'right', u'propaganda', u'army'],
  [u'movie']],
 [[u'post',
   u'woman',
   u'background',
   u'comment',
   u'woman',
   u'life',
   u'man',
   u's".<br',
   u'mantra',
   u'history',
   u'biology'],
  [u'society', u'loss', u'male', u'population', u'speed'],
  [u'war', u'war', u'man'],
  [u'country',
   u'male',
   u'population',
   u'stalemate',
   u'society',
   u'loss',
   u'population'],
  [u'situation',
   u'coed',
   u'combat',
   u'unit',
   u'image',
   u'girl',
   u'soldier.<br']],
 [[u'script', u'insult', u'whomever', u'life'],
  [u'cinematography', u'slick', u'world', u'advertising'],
  [u'concept', u'style', u'film']],
 [[u'reviews',
   u'film',
   u'film',
   u'gem',
   u'person',
   u'film',
   u'window',
   u'person',
   u'film',
   u'window',
   u'etc.<br',
   u'bit',
   u'stretch',
   u'imagination',
   u'league',
   u'film',
   u'film',
   u'1920s',
   u'film'],
  [u'brand',
   u'director',
   u'dream',
   u'sequence',
   u'segment',
   u'editing',
   u'attention',
   u'career.<br',
   u'film',
   u'thing',
   u'spectacle',
   u'circus',
   u'manner',
   u'way',
   u'egg',
   u'fruit',
   u'crowd',
   u'person'],
  [u'circuse',
   u'person',
   u'sequence',
   u'film',
   u'attraction',
   u'circus',
   u'fighter',
   u'man',
   u'round',
   u'match',
   u'man',
   u'authority',
   u'boxing',
   u'ring',
   u'ring',
   u'wife'],
  [u'entertaining',
   u'challenge',
   u'love',
   u'woman',
   u'man',
   u'thoughtlessly.<br',
   u'example',
   u'scene',
   u'husband',
   u'home',
   u'night',
   u'building',
   u'car',
   u'kiss'],
  [u'kiss', u'fact', u'end', u'husband', u'eye', u'film', u'film', u'year'],
  [u'performance', u'trainer', u'stone', u'expressionism'],
  [u'bit', u'sample', u'work']],
 [],
 [[u'film',
   u'round',
   u'ex-girlfriend',
   u'house.<br',
   u'credibility',
   u'viewer',
   u'scenario',
   u'course'],
  [u'film', u'predictable.<br', u'action', u'film', u'film', u'life'],
  [u'fails.<br', u'film', u'storyline', u'acting', u'reason', u'work']],
 [[u'reviews', u'movie', u'person', u'movie'],
  [u'acting'],
  [u'tit'],
  [u'point', u'character'],
  [u'correctness'],
  [u'shoot', u'round', u'noise', u'course'],
  [u'wing',
   u'man',
   u'anytime.<br',
   u'premise',
   u'hold',
   u'tits.<br',
   u'film']],
 [[u'army', u'woman', u'man'], [u'hell', u'scene'], [u'person', u'danger']],
 [[u'point'],
  [u'liberal', u'feminist', u'woman'],
  [u'man',
   u'woman',
   u'different.regardless',
   u'fact',
   u'thing',
   u'order',
   u'person',
   u'feeling'],
  [u'man',
   u'birth',
   u'breast',
   u'feed',
   u'baby',
   u'strength',
   u'par',
   u'man',
   u'combat',
   u'situation'],
  [u'hoot', u'hell', u'upset', u'you.come', u'heart'],
  [u'movie', u'comedy']],
 [[u'start', u'movie'],
  [u'plot'],
  [u'unit'],
  [u'movie',
   u'woman',
   u'ability',
   u'type',
   u'task',
   u'woman',
   u'man',
   u'insult',
   u'intelligence'],
  [u'difference', u'sex', u'life']],
 [[u'age'],
  [u'person'],
  [u'film', u'showcase', u'wizardry'],
  [u'writing'],
  [u'dialogue'],
  [u'song'],
  [u'acting', u'actor'],
  [u'sin.<br', u'thing', u'obviousness'],
  [u'writer', u'way'],
  [u'child', u'movie', u'wit', u'film', u'year'],
  [u'dumbing-down', u'trash']],
 [[u'wolf'],
  [u'make-up', u'short', u'robe'],
  [u'minute', u'pedophile', u'dream'],
  [u'movie', u'joke', u'family', u'movie'],
  [u'daughter', u'family', u'quasi', u'kiddie', u'porn'],
  [u'family', u'film'],
  [u'advertising', u'effect'],
  [u'effect', u'budget']],
 [[u'reviews', u'screening', u'night'],
  [u'filmmaker', u'plant', u'reviews', u'way', u'individual'],
  [u'cult'],
  [u'theater',
   u'friend',
   u'family',
   u'production',
   u'crew',
   u'hour.<br',
   u'song',
   u'cut',
   u'honey',
   u'wolf',
   u'wood'],
  [u'tune', u'lines.<br', u'wolf', u'tale'],
  [u'pound', u'high', u'makeup', u'singing'],
  [u'guy', u'group'],
  [u'rest', u'actor', u'semi-adequate', u'script'],
  [u'adult', u'child', u'time', u'pixar".<br', u'set', u'actor']],
 [[u'creativeness', u'movie', u'writer', u'director', u'story', u'line'],
  [u'movie', u'child'],
  [u'budget', u'film', u'movie', u'movie'],
  [u'movie', u'chance', u'actor', u'money', u'chance', u'role', u'movie']],
 [[u'film',
   u'flaw',
   u'plot',
   u'scene',
   u'relevance',
   u'mastery',
   u'editing',
   u'use',
   u'image'],
  [u'expressionist',
   u'film',
   u'note',
   u'example',
   u'distortion',
   u'party',
   u'sequence',
   u'echo',
   u'title',
   u'plot',
   u'imagery.<br',
   u'core',
   u'match',
   u'example',
   u'boxing'],
  [u'hero',
   u'movement',
   u'wife',
   u'champion',
   u'corner',
   u'plot',
   u'pay-off',
   u'progress',
   u'match'],
  [u'insert', u'stopwatch', u'film', u'visual', u'feel'],
  [u'viewer',
   u'excitement',
   u'brutality',
   u'match',
   u'jealousy',
   u'it.<br',
   u'release',
   u'domain',
   u'company'],
  [u'selection', u'action'],
  [u'editing',
   u'quality',
   u'care',
   u'choice',
   u'music',
   u'match',
   u'work',
   u'sequence',
   u'film',
   u'obscurity'],
  [u'place', u'canon', u'list', u'boxing', u'film']],
 [[u'arm',
   u'chair',
   u'beer',
   u'bag',
   u'popcorn',
   u'bouyant',
   u'hope',
   u'muppet',
   u'night',
   u'entertainment'],
  [u'muppet'],
  [u'humour', u'song', u'plot'],
  [u'problem'],
  [u'tale', u'jinks', u'need', u'plot', u'fun']],
 [[u'movie', u'writer', u'commentary', u'chasm', u'character', u'audience'],
  [u'movie',
   u'means',
   u'communication',
   u'communication',
   u'audience',
   u'hell',
   u'director'],
  [u'director', u'purpose', u'movie', u'void', u'convention'],
  [u'shorthand', u'idea'],
  [u'way', u'idea'],
  [u'film', u'premise'],
  [u'puppet',
   u'personality',
   u'background',
   u'corpse',
   u'disinformation',
   u'mission',
   u'closing',
   u'day'],
  [u'fantasy', u'character', u'invention'],
  [u'disdain', u'convention', u'storytelling', u'film', u'idea'],
  [u'puppet', u'consistency', u'character', u'script'],
  [u'corpse'],
  [u'number', u'muppet', u'film', u'puppet']],
 [[u'movie', u'trash.<br', u'fun'],
  [u'innocence', u'time', u'well.<br', u'kid'],
  [u'hell'],
  [u'ripoff', u'charm', u'grace', u'that.<br', u'villain', u'crap'],
  [u'villain'],
  [u'hand',
   u'idiot',
   u'bicker',
   u'try',
   u'charisma',
   u'duo',
   u'charm',
   u'villain'],
  [u'entertaining'],
  [u'movie'],
  [u'feeling', u'emotion'],
  [u'masterpiece'],
  [u'person', u'movie'],
  [u'sequel',
   u'rip-off',
   u'trap',
   u'character',
   u'kid',
   u'robber',
   u'crap',
   u'garbage']],
 [[u'film',
   u'idea',
   u'head',
   u'plot',
   u'kid',
   u'villain',
   u'stupidity',
   u'trap'],
  [u'film', u'rock'],
  [u'person', u'film', u'plot']],
 [[u'poor,poor', u'criminal', u'home', u'movie'],
  [u'trap',
   u'excuse',
   u'idea',
   u'person',
   u'movie',
   u'paycheck',
   u'buck',
   u'week'],
  [u'movie'],
  [u'use', u'eye', u'way'],
  [u'person', u'movie']],
 [[u'movie'],
  [u'thing', u'gun', u'toy', u'car', u'house'],
  [u'movie', u'terrorist']],
 [[u'particular', u'movie', u'chest', u'cavity', u'spoon'],
  [u'home', u'bit', u'excuse', u'film', u'bid', u'commercialization'],
  [u'kind', u'person', u'movie', u'waste', u'time', u'experience']],
 [[u'cream', u'crop', u'stuff'],
  [u'fact', u'laugh', u'stupidity'],
  [u'movie', u'plot'],
  [u'chip', u'control', u'car'],
  [u'stuff.<br', u'action', u'boobytrap', u'boobytrap'],
  [u'smile', u'terrorist', u'kid'],
  [u'bird', u'relief', u'bunch'],
  [u'performance'],
  [u'kid',
   u'terrorist',
   u'movie',
   u'credit',
   u'street',
   u'person',
   u'man',
   u'kid'],
  [u'<br', u'movie'],
  [u'kid', u'reason']],
 [[u'curiosity'],
  [u'trailer', u'plot', u'movie', u'hour', u'minute', u'life', u'dollar'],
  [u'movie',
   u'disaster',
   u'embarrassment',
   u'movie',
   u'ignorance',
   u'reality'],
  [u'example', u'kid', u'control', u'race', u'car', u'neighborhood', u'house'],
  [u'signal', u'circumstance'],
  [u'logic',
   u'concept',
   u'electronic',
   u'dictate',
   u'race',
   u'car',
   u'street',
   u'house',
   u'street'],
  [u'trait', u'lack', u'intelligence', u'criminal', u'possess'],
  [u'movie', u'criminal', u'rocket', u'scientist'],
  [u'kid', u'person', u'movie', u'terrorist'],
  [u'leader', u'pistol', u'pistol', u'difference'],
  [u'glove'],
  [u'sense', u'sight'],
  [u'trap', u'criminal'],
  [u'laugh', u'result', u'trap'],
  [u'laugh', u'eyes.<br', u'movie', u'movie', u'movie']],
 [[u'ripoff', u'home', u'movie'],
  [u'movie',
   u'sequel',
   u'character',
   u'actor',
   u'sequel',
   u'character',
   u'actor'],
  [u'home', u'movie', u'home', u'movie'],
  [u'sequel']],
 [[u'effort'],
  [u'screenplay', u'film', u'story', u'structure'],
  [u'boxing',
   u'match',
   u'carnival',
   u'champ',
   u'challenger',
   u'audience',
   u'prizefighter'],
  [u'movie', u'character', u'love', u'triangle', u'girl', u'boxer'],
  [u'rest',
   u'film',
   u'buildup',
   u'rematch',
   u'man',
   u'time',
   u'heavyweight',
   u'crown'],
  [u'film', u'talent', u'cinematography', u'placement'],
  [u'detractor', u'film', u'art', u'boxing', u'match'],
  [u'match', u'result']],
 [[u'reviews', u'sum'],
  [u'number', u'reason', u'talent', u'movie', u'acting'],
  [u'storyline', u'joke', u'chip', u'terrorist', u'quest'],
  [u'rent', u'tow'],
  [u'<br', u'movie'],
  [u'home', u'time', u'family', u'comedy', u'movie', u'joke', u'plot']],
 [[u'plane', u'train', u'automobile', u'comedy', u'thing'],
  [u'year', u'plot', u'home', u'sequel', u'film'],
  [u'crook'],
  [u'congratulation', u'change', u'series'],
  [u'metal', u'chair', u'barbell', u'paint', u'haaaaaaaa', u'kid'],
  [u'departure', u'player', u'film', u'routine', u'surprise', u'home']],
 [[u'figure', u'movie', u'home', u'empire'],
  [u'spy',
   u'missile',
   u'guidance',
   u'computer',
   u'chip',
   u'airport',
   u'toy',
   u'car'],
  [u'baggage', u'confusion', u'car'],
  [u'spy', u'attention', u'device', u'booby-trap', u'house'],
  [u'home'],
  [u'home', u'character', u'movie', u'series', u'risk']],
 [[u'home', u'film', u'sequel', u'setting'],
  [u'degree', u'course', u'formula', u'movie', u'time', u'plot'],
  [u'score',
   u'trap',
   u'piece',
   u'score',
   u'almost-but-not-quite-as-good',
   u'score'],
  [u'music'],
  [u'plot', u'franchise', u'movie', u'worse', u'example', u'character'],
  [u'acting'],
  [u'thieve', u'fun', u'spy-stuff', u'spy', u'flick'],
  [u'fact', u'them(and', u'trap', u'attempt', u'film'],
  [u'idea',
   u'thieve',
   u'mission',
   u'tad',
   u'child',
   u'joke',
   u'time',
   u'series'],
  [u'plot'],
  [u'exposition', u'child'],
  [u'stuff'],
  [u'sibling', u'personality', u'film'],
  [u'criminal', u'violence'],
  [u'fan', u'series']],
 [[u'home', u'home', u'movie', u'role', u'villain'],
  [u'plot', u'home', u'film'],
  [u'villain'],
  [u'film', u'trap', u'scene', u'car'],
  [u'slapstick', u'humour', u'boy', u'villain', u'impact', u'film'],
  [u'film', u'film', u'holiday', u'feeling', u'subplot', u'film'],
  [u'comedy', u'laugh', u'character'],
  [u'film', u'boring'],
  [u'holiday', u'family', u'film', u'comedy', u'home', u'movie']],
 [[u'guy',
   u'tag',
   u'line',
   u'movie',
   u'truth',
   u'it.<br',
   u'film',
   u'classic'],
  [u'home', u'film'],
  [u'sharkboy'],
  [u'actor',
   u'performance',
   u'fault',
   u'writing',
   u'vocabulary',
   u'expression'],
  [u'prank', u'crook', u'chicken', u'pox'],
  [u'choice', u'teacher', u'film', u'day'],
  [u'thing', u'cast']],
 [[u'home', u'movie', u'cast', u'joke'],
  [u'story'],
  [u'child'],
  [u'kid', u'year', u'mother', u'house'],
  [u'time'],
  [u'home']],
 [[u'film',
   u'premise',
   u'millionaire',
   u'oil',
   u'fume',
   u'whiskey',
   u'problem',
   u'parking',
   u'lot'],
  [u'summary',
   u'oil',
   u'business',
   u'cahoot',
   u'gummint',
   u'cahoot',
   u'despot',
   u'pool',
   u'dealing',
   u'sons-of-(insert',
   u'word',
   u'toe',
   u'line',
   u'way'],
  [u'person'],
  [u'terrorism',
   u'result',
   u'poverty',
   u'globalization',
   u'multinational',
   u'world',
   u'takeover'],
  [u'profile',
   u'perpetrators.<br',
   u'tissue',
   u'half-truth',
   u'hologram',
   u'vermicelli',
   u'story',
   u'strand',
   u'twist',
   u'turn',
   u'whirl',
   u'gloopy',
   u'circumlocution',
   u'insignificance',
   u'viewer',
   u'conclusion',
   u'<br'],
  [u'director', u'joke', u'camera'],
  [u'film', u'deal', u'corruption', u'business', u'state', u'du', u'pouvoir']],
 [[u'movie'],
  [u'advancement'],
  [u'character', u'development'],
  [u'point'],
  [u'movie',
   u'terrorist',
   u'guy',
   u'bomb',
   u'opinion',
   u'capitalist',
   u'storyboard',
   u'advancement',
   u'death'],
  [u'guy', u'point', u'movie'],
  [u'summary', u'attempt', u'style', u'movie', u'movie'],
  [u'home', u'piece']],
 [[u'sat', u'hour', u'drivel'],
  [u'film', u'twaddle'],
  [u'dud', u'dvd', u'film', u'sentence', u'mid-air'],
  [u'film'],
  [u'pity', u'cast', u'material']],
 [[u'movie', u'plot'],
  [u'course',
   u'plot',
   u'girl',
   u'love',
   u'man',
   u'silver',
   u'laughter',
   u'fear',
   u'compassion',
   u'anguish'],
  [u'way',
   u'crowds',
   u'strength',
   u'attraction',
   u'girl',
   u'man',
   u'element',
   u'technique',
   u'mind',
   u'movies(north'],
  [u'master', u'thirty']],
 [[u'comment',
   u'syriana',
   u'family',
   u'film',
   u'home',
   u'waste',
   u'time',
   u'space.<br',
   u'film',
   u'script',
   u'writer'],
  [u'story',
   u'manner',
   u'vignette',
   u'story-line',
   u'dozen',
   u'story-line',
   u'audience',
   u'viewing'],
  [u'viewing',
   u'clarity',
   u'precision',
   u'plot',
   u'story-line',
   u'characterisation',
   u'beginning',
   u'middle',
   u'end.<br',
   u'kind',
   u'presentation',
   u'experience',
   u'restaurant',
   u'unintelligent',
   u'extreme.<br',
   u'goodness',
   u'tv',
   u'presentation',
   u'film',
   u'noir',
   u'1940',
   u'writer',
   u'director',
   u'actor',
   u'value',
   u'story',
   u'diction',
   u'something.<br',
   u'family']],
 [[u'film', u'night', u'lot', u'reviews', u'source'],
  [u'work',
   u'film.<br',
   u'role',
   u'actor',
   u'film',
   u'film',
   u'jump',
   u'story',
   u'roles.<br',
   u'buff',
   u'corruption',
   u'world',
   u'government',
   u'film',
   u'movie',
   u'watcher',
   u'film',
   u'boring',
   u'place',
   u'cinema',
   u'entrance',
   u'fee.<br',
   u'politic']],
 [[u'politic', u'opinion', u'movie'],
  [u'movie', u'bush', u'oil', u'propaganda', u'credit', u'credit'],
  [u'film', u'night', u'kind', u'film', u'science', u'collage'],
  [u'cinematography', u'acting', u'good.<br', u'plot'],
  [u'matter',
   u'way',
   u'piece',
   u'story',
   u'line',
   u'movie',
   u'character',
   u'story',
   u'scene',
   u'sequence',
   u'movie',
   u'time',
   u'depth',
   u'story',
   u'idea',
   u'sense',
   u'argument',
   u'criticism',
   u'argument',
   u'critique']],
 [[u'movie',
   u'thriller',
   u'sub-plot',
   u'climax',
   u'end',
   u'yawn.<br',
   u'writing',
   u'pace',
   u'character'],
  [u'gym', u'line', u'teleprompter.<br', u'movie', u'business', u'oil']],
 [[u'guy', u'brain'],
  [u'clue', u'person'],
  [u'nail'],
  [u'attorney', u'dad', u'mystery'],
  [u'cricket', u'line', u'hour'],
  [u'wife', u'beard', u'pound']],
 [[u'film'],
  [u'film'],
  [u'character', u'story', u'line'],
  [u'award', u'film', u'half', u'movie'],
  [u'forwarding', u'confusion', u'chance', u'improvement'],
  [u'hour'],
  [u'day']],
 [[u'movie'],
  [u'track', u'person', u'motive', u'character', u'uninteristing'],
  [u'<br', u'minute', u'feature', u'kick', u'giggle', u'person'],
  [u'time', u'movie'],
  [u'lecture', u'awareness', u'blery', u'eye', u'sandman']],
 [[u'director', u'movie', u'documentary'],
  [u'plot', u'agent', u'oil', u'prince', u'prince'],
  [u'element', u'movie'],
  [u'kid', u'result', u'response', u'father', u'person', u'son', u'death'],
  [u'lawyer', u'friend'],
  [u'kid', u'suicide', u'terrorist', u'ship.<br', u'movie'],
  [u'eye', u'movie']],
 [[u'movie'],
  [u'way', u'disgust.<br', u'movie'],
  [u'acting', u'portrayal'],
  [u'plot', u'fashion', u'attention'],
  [u'sub', u'plot', u'story', u'plot'],
  [u'subject', u'actor', u'flop']],
 [[u'film', u'oil', u'industry', u'mind'],
  [u'unintelligent', u'politic', u'teen', u'film', u'film', u'message'],
  [u'syriana', u'person'],
  [u'film', u'dribble', u'acclaim', u'cast'],
  [u'film', u'mess'],
  [u'disaster.<br', u'actor', u'thought', u'performance', u'script', u'actor'],
  [u'performance', u'performance'],
  [u'character', u'history', u'character'],
  [u'deer', u'headlight', u'confusion', u'script'],
  [u'billing', u'anymore.<br', u'cast', u'story', u'sense'],
  [u'description', u'plot'],
  [u'missile',
   u'problem',
   u'heir',
   u'oil',
   u'contract',
   u'company',
   u'immigrant',
   u'worker',
   u'firm',
   u'oil',
   u'contract'],
  [u'fall', u'guy', u'sort', u'cross'],
  [u'economist', u'death', u'son', u'contract', u'sheik'],
  [u'group'],
  [u'man', u'movie', u'tear', u'matter', u'hour', u'half'],
  [u'opinion', u'entertainment', u'film', u'hour']],
 [[u'screenplay', u'deal', u'picture', u'love', u'triangle'],
  [u'glance', u'update', u'morality', u'comedy', u'picture'],
  [u'idea',
   u'motif',
   u'thriller',
   u'tool',
   u'suspense.<br',
   u'student',
   u'expressionist',
   u'style',
   u'editing',
   u'style',
   u'impact'],
  [u'shot', u'ride', u'tempo'],
  [u'editing',
   u'style',
   u'sound',
   u'example',
   u'shot',
   u'bell',
   u'sound',
   u'image',
   u'contrast',
   u'film',
   u'title',
   u'card'],
  [u'imagery',
   u'faith',
   u'audience',
   u'meaning',
   u'bulk',
   u'character',
   u'speech'],
  [u'symbolism',
   u'angle',
   u'timing',
   u'point-of-view',
   u'shot',
   u'performance'],
  [u'expressionist', u'device', u'exposure', u'honourable', u'actor'],
  [u'role'],
  [u'spite', u'talent', u'bit', u'role', u'ballet', u'dancer', u'pugilist'],
  [u'fact', u'boxer'],
  [u'rival', u'career', u'role'],
  [u'performance', u'shame', u'career', u'era'],
  [u'relief', u'fight', u'scene', u'moment', u'silent-era'],
  [u'fight',
   u'shot',
   u'action',
   u'middle',
   u'close-up',
   u'point-of-view',
   u'shot'],
  [u'aim',
   u'audience',
   u'career',
   u'secret',
   u'success',
   u'viewer',
   u'character',
   u'fear',
   u'paranoia.<br',
   u'recognition'],
  [u'work', u'picture', u'feature']],
 [[u'trailer',
   u'thriller-lover',
   u'breath',
   u'movie',
   u'dip',
   u'policy-making',
   u'relation',
   u'oil',
   u'power',
   u'corruption',
   u'angle'],
  [u'pace', u'character', u'editing', u'logic', u'review', u'end']],
 [[u'film', u'kernel', u'story'],
  [u'film',
   u'story',
   u'ending',
   u'satisfying',
   u'couple',
   u'bar',
   u'fight',
   u'relationship',
   u'spark',
   u'campfire'],
  [u'rescue', u'scene', u'computer', u'generation', u'scenario', u'backstory'],
  [u'hand', u'acting', u'watch'],
  [u'female', u'character'],
  [u'female', u'sailor', u'rescue', u'center', u'camera', u'minute', u'film'],
  [u'film']],
 [[u'movie'], [u'story'], [u'type', u'movie', u'night'], [u'home']],
 [[u'film', u'boring'], [u'laugh', u'for.<br', u'humour', u'film']],
 [[u'comedy', u'time'],
  [u'producer', u'movie', u'hour', u'half', u'life', u'minute'],
  [u'voice', u'start', u'rest', u'movie'],
  [u'line', u'movie'],
  [u'ground', u'category'],
  [u'spectrum', u'career.<br', u'movie', u'plague.<br']],
 [[u'sketch', u'actor', u'movie', u'industry', u'sort', u'control'],
  [u'character', u'speed'],
  [u'rendition'],
  [u'comedian'],
  [u'vet', u'office']],
 [[u'expectation'],
  [u'hope', u'dirt', u'comedy', u'snl', u'member'],
  [u'film', u'preview'],
  [u'actor', u'movie', u'energy'],
  [u'skit', u'cast', u'member'],
  [u'case', u'script', u'scene', u'mugging'],
  [u'scene', u'act'],
  [u'type', u'comedy'],
  [u'fool'],
  [u'laugh', u'fact', u'thing', u'film'],
  [u'<br', u'rest', u'member', u'role'],
  [u'line'],
  [u'movie'],
  [u'movie', u'role'],
  [u'<br', u'time', u'laugh'],
  [u'gag'],
  [u'minute', u'fart'],
  [u'gag', u'gag', u'hell', u'lot'],
  [u'example', u'man', u'drug', u'bust'],
  [u'comedy', u'time'],
  [u'thing', u'trailer']],
 [[u'laugh'],
  [u'comedy', u'role', u'night', u'roxbury'],
  [u'movie', u'humor']],
 [[u'jaw',
   u'comedy',
   u'performance',
   u'character',
   u'shame',
   u'premise',
   u'idea'],
  [u'page', u'script']],
 [[u'spoiler', u'spoiler', u'credit', u'movie', u'straight'],
  [u'movie', u'kindergarten'],
  [u'sheer',
   u'greatness',
   u'movie',
   u'theater',
   u'ticket',
   u'dozen',
   u'tickets.<br',
   u'movie',
   u'viewing'],
  [u'feeling'],
  [u'story', u'mortality', u'author'],
  [u'story', u'story', u'level', u'thing', u'life'],
  [u'viewing', u'mystery'],
  [u'watch', u'twist', u'end', u'guard', u'agent', u'agent', u'closet'],
  [u'hell', u'talent', u'character', u'maze', u'situation'],
  [u'performance', u'personality', u'scene', u'timing'],
  [u'master', u'drama', u'audience', u'feeling', u'face'],
  [u'expression', u'life', u'way'],
  [u'example',
   u'scene',
   u'brother',
   u'expression',
   u'injustice',
   u'alienation',
   u'face'],
  [u'moment', u'eye', u'house.<br', u'hero'],
  [u'story', u'proportion', u'writer', u'project'],
  [u'storytelling', u'structuring', u'pulp', u'look', u'skit'],
  [u'story', u'grip', u'hair', u'swallow'],
  [u'end',
   u'experience',
   u'person',
   u'worldviews',
   u'idea',
   u'question',
   u'mind:<br']],
 [[u'use',
   u'object',
   u'form',
   u'editing',
   u'position',
   u'character',
   u'scene',
   u'genius'],
  [u'way',
   u'wife',
   u'corner',
   u'ring',
   u'fight',
   u'editing',
   u'wedding',
   u'ring',
   u'finger',
   u'bit',
   u'today',
   u'standard',
   u'era',
   u'volume',
   u'story',
   u'word']],
 [[u'branch'],
  [u'branch'],
  [u'matter', u'bit', u'room', u'floor'],
  [u'value',
   u'movie',
   u'study',
   u'movie',
   u'distribution',
   u'repaired.<br',
   u'dozen',
   u'reviews'],
  [u'number',
   u'reviews',
   u'waste',
   u'time',
   u'suspicion',
   u'person',
   u'title'],
  [u'money', u'rating', u'list', u'movie', u'time']],
 [[u'time', u'movie', u'cast', u'member'], [u'manner', u'hour'], [u'manner']],
 [[u'movie'],
  [u'movie'],
  [u'hour',
   u'thinking',
   u'disc',
   u'case.<br',
   u'movie',
   u'attempt',
   u'mafia',
   u'comedy.<br',
   u'problem',
   u'audience',
   u'laugh',
   u'plot',
   u'excuse',
   u'scene'],
  [u'subtlety', u'credulity', u'mannerism', u'role', u'story'],
  [u'scene', u'event', u'set', u'scene'],
  [u'comedy',
   u'disaster',
   u'title',
   u'character',
   u'character',
   u'motivation',
   u'event',
   u'situation',
   u'character'],
  [u'screwing',
   u'attempt',
   u'laugh',
   u'audience.<br',
   u'character',
   u'character',
   u'movie',
   u'behaviour',
   u'laugh',
   u'comedy',
   u'scene',
   u'joke',
   u'movie']],
 [[u'laugh', u'minute', u'film'], [u'screen'], [u'movie']],
 [[u'movie'],
  [u'theatre', u'word', u'mouth'],
  [u'urge', u'slam', u'head', u'theatre', u'wall', u'hour', u'half'],
  [u'humor', u'grade', u'level', u'acting', u'plot']],
 [[u'film'],
  [u'reason', u'film'],
  [u'character'],
  [u'gag'],
  [u'sort', u'joke', u'friend', u'vet'],
  [u'life', u'loop', u'family', u'trace', u'family', u'crime', u'history'],
  [u'agent', u'peg', u'duty', u'family'],
  [u'mishap', u'mayhem', u'hijixn'],
  [u'love',
   u'partner',
   u'straight',
   u'family',
   u'life',
   u'again.<br',
   u'film',
   u'actor',
   u'joke'],
  [u'limitation',
   u'actor',
   u'note',
   u'slapstick',
   u'routine',
   u'minute',
   u'film'],
  [u'movie', u'slap', u'stick', u'humor'],
  [u'joke', u'movie', u'torture.<br', u'problem', u'movie', u'lack'],
  [u'mafia', u'brother', u'guy', u'sch-tick', u'plenty', u'joke', u'time'],
  [u'cast', u'talent', u'joke'],
  [u'thing', u'body']],
 [[u'world', u'portrayer', u'incompetence'],
  [u'anchor', u'disaster'],
  [u'mix', u'gangster', u'charm', u'man', u'foolishness'],
  [u'performance',
   u'boss',
   u'female',
   u'agent',
   u'head',
   u'glass',
   u'ceiling',
   u'advisor',
   u'plot',
   u'concept',
   u'possibility',
   u'hand',
   u'vehicle'],
  [u'brother', u'proven', u'capability.<br', u'scene', u'way'],
  [u'movie'],
  [u'level', u'wit', u'slapstick'],
  [u'reference', u'adult'],
  [u'entendre'],
  [u'way', u'9-year-old', u'taste', u'fascination', u'body', u'function']],
 [[u'road', u'movie', u'relief', u'performance'],
  [u'slapstick', u'sentimentality', u'drop', u'hat', u'film', u'peril']],
 [[u'preview', u'movie'],
  [u'producer', u'message', u'parent', u'life', u'way', u'message'],
  [u'time', u'silly', u'couple'],
  [u'end', u'mishap', u'movie', u'total', u'line', u'dialogue', u'movie']],
 [[u'movie'], [u'film'], [u'story', u'goal', u'fun.<br']],
 [[u'student', u'reason', u'film'],
  [u'heat',
   u'dust',
   u'clime',
   u'story',
   u'symbolism',
   u'inversion',
   u'theme',
   u'land'],
  [u'memory', u'subjectivity', u'outsider'],
  [u'year',
   u'forerunner',
   u'genre',
   u'film',
   u'theme',
   u'colonial',
   u'space',
   u'clueless',
   u'nuance',
   u'culture'],
  [u'work', u'theme', u'indochine', u'comparison', u'boring'],
  [u'action', u'violence'],
  [u'struggle'],
  [u'film']],
 [[u'day', u'office'],
  [u'comedy', u'day', u'office'],
  [u'also.<br', u'comedian', u'role', u'advertising', u'exec', u'count'],
  [u'work',
   u'tv',
   u'problem',
   u'movie',
   u'couple',
   u'everybody',
   u'life',
   u'bliss',
   u'sort',
   u'city',
   u'world'],
  [u'movie',
   u'comedy',
   u'thing',
   u'trip',
   u'situation',
   u'sight',
   u'gag',
   u'environment'],
  [u'version', u'tangent', u'audience', u'day', u'excess'],
  [u'example', u'star', u'appeal', u'player', u'cameo', u'mayor'],
  [u'walking',
   u'advertisement',
   u'face',
   u'role',
   u'time',
   u'prancing',
   u'cross-dresser',
   u'hotel',
   u'staff',
   u'customer',
   u'role'],
  [u'process',
   u'damage',
   u'memory',
   u'comedy',
   u'series',
   u'bar',
   u'<br',
   u'movie'],
  [u'city', u'place', u'couple', u'life'],
  [u'thing',
   u'glitz',
   u'moxie',
   u'<br',
   u'couple',
   u'moxie',
   u'fray',
   u'dream',
   u'life',
   u'liberty',
   u'pursuit',
   u'happiness'],
  [u'movie', u'reason', u'producer'],
  [u'comedy', u'movie', u'travesty']],
 [[u'career', u'gamin', u'year'],
  [u'<br',
   u'film',
   u'year',
   u'disaster',
   u'lead',
   u'exposition',
   u'trademark',
   u'tics',
   u'effort',
   u'script',
   u'directing'],
  [u'performer', u'mess', u'fault', u'failure', u'rest', u'cast', u'picture']],
 [[u'film', u'waste', u'star', u'stardom'],
  [u'moment',
   u'hotel',
   u'manager',
   u'fall',
   u'chair',
   u'laughter',
   u'dance',
   u'heel',
   u'mink',
   u'coat',
   u'hat']],
 [[u'movie'],
  [u'star', u'work', u'comedy', u'time.<br', u'movie'],
  [u'mind', u'joke'],
  [u'actor', u'script', u'misfortune'],
  [u'time',
   u'duration',
   u'film',
   u'entertainment',
   u'movie',
   u'life',
   u'comment',
   u'generalization'],
  [u'film'],
  [u'hand', u'finger', u'production'],
  [u'comedy'],
  [u'entertainment', u'money', u'watch', u'swirl', u'toilet']],
 [[u'couple', u'movie', u'year', u'turn', u'story', u'established.<br']],
 [[u'idea'],
  [u'watch', u'movie', u'truth', u'lead'],
  [u'slapstick', u'movie', u'jerk', u'sort', u'character'],
  [u'member.<br', u'plot'],
  [u'character', u'bit', u'sense'],
  [u'right'],
  [u'premise', u'message', u'person', u'theme', u'movie.<br', u'summation']],
 [[u'attempt',
   u'movie',
   u'cast',
   u'material',
   u'level.<br',
   u'chemistry',
   u'effort']],
 [[u'movie'],
  [u'towner', u'course', u'script'],
  [u'reason', u'script', u'film', u'time', u'time'],
  [u'direction', u'joke', u'joke', u'couple', u'sex', u'park'],
  [u'ceremony', u'light', u'mugging', u'bit', u'slap', u'stick'],
  [u'lens'],
  [u'laugh']],
 [[u'movie', u'cast', u'script', u'director', u'comedy', u'masterpiece'],
  [u'bore-a-thon'],
  [u'movie'],
  [u'genius',
   u'minute',
   u'waste',
   u'celluloid.<br',
   u'screenplay',
   u'version',
   u'fiasco',
   u'defamation',
   u'humor!<br',
   u'job',
   u'producer'],
  [u'director', u'editor', u'scene'],
  [u'thing', u'surprise', u'movie']],
 [[u'word', u'hatred', u'film'],
  [u'word',
   u'expletive',
   u'sex',
   u'scene',
   u'drug',
   u'stereotyping',
   u'norm',
   u'acting',
   u'et']],
 [[u'film',
   u'alien',
   u'abyss',
   u'confidant',
   u'director',
   u'action',
   u'science-fiction'],
  [u'story', u'quality', u'film'],
  [u'stroke', u'brilliance'],
  [u'film',
   u'room',
   u'surprise',
   u'plot',
   u'development',
   u'character',
   u'development',
   u'story'],
  [u'story',
   u'voyager',
   u'voyage',
   u'legend',
   u'challenge',
   u'entertaining',
   u'film'],
  [u'acting',
   u'superstar',
   u'release',
   u'film',
   u'film',
   u'character',
   u'lot',
   u'film',
   u'story',
   u'story'],
  [u'eye', u'theater', u'home'],
  [u'music'],
  [u'composer', u'soundtrack', u'film', u'audience'],
  [u'song', u'phenomenon', u'film'],
  [u'problem', u'problem', u'dialogue', u'way', u'point'],
  [u'masterpiece', u'epic', u'sweep', u'journey', u'lifetime']],
 [[u'debut', u'brave'],
  [u'depiction',
   u'life',
   u'end',
   u'colonialist',
   u'relationship',
   u'man',
   u'woman',
   u'servant',
   u'film',
   u'object',
   u'desire',
   u'oppression',
   u'film',
   u'territory',
   u'beginning'],
  [u'picture',
   u'life',
   u'series',
   u'character',
   u'relationship',
   u'viewer',
   u'screen'],
  [u'mood', u'film', u'camera-work', u'lack', u'lighting.<br', u'discourse']],
 [[u'time', u'history', u'lesson'],
  [u'acting', u'lot', u'sex', u'minute', u'film']],
 [[u'decline', u'success', u'mess'],
  [u'movie', u'cast', u'disappointment.<br', u'point'],
  [u'swear', u'sex', u'wife'],
  [u'character', u'stereotype.<br', u'film']],
 [[u'actor',
   u'character',
   u'male',
   u'female',
   u'foible',
   u'group',
   u'culture'],
  [u'immigrant', u'group'],
  [u'scene', u'college', u'production', u'guy', u'low-rent', u'street'],
  [u'problem', u'flick'],
  [u'time']],
 [[u'critic',
   u'darling',
   u'film',
   u'message',
   u'approach',
   u'critic',
   u'formula',
   u'film',
   u'stuff',
   u'different.<br'],
  [u'cinematography', u'editing', u'style'],
  [u'portrayal', u'pc', u'set', u'italian-american'],
  [u'impression',
   u'guy',
   u'fight',
   u'caricature',
   u'character',
   u'exception).<br',
   u'anybody',
   u'movie',
   u'figure'],
  [u'character',
   u'integrity',
   u'film',
   u'course',
   u'person',
   u'crowd',
   u'clique!)<br',
   u'lifetime',
   u'pass',
   u'game'],
  [u'film',
   u'camera',
   u'time',
   u'self',
   u'drivel',
   u'critic',
   u'ohhhh',
   u'clothe']],
 [[u'movie', u'movie', u'effect', u'society'],
  [u'garbage',
   u'tension',
   u'mob-justice',
   u'inability',
   u'citizen',
   u'choice',
   u'pressure',
   u'peer'],
  [u'opinion.<br',
   u'movie',
   u'format',
   u'focus',
   u'sub-plots.<br',
   u'video',
   u'case',
   u'theatre'],
  [u'movie']],
 [[u'movie', u'waste', u'hour'],
  [u'movie', u'killing'],
  [u'dog', u'trouble', u'movie', u'patron', u'laughter'],
  [u'movie'],
  [u'sex', u'scene', u'plot'],
  [u'sex', u'movie', u'point', u'movie']],
 [[u'mess', u'film', u'thrashing', u'thing'],
  [u'film', u'abundance', u'image'],
  [u'film', u'fact', u'drama'],
  [u'crime',
   u'caper',
   u'film',
   u'example',
   u'violence',
   u'profanity',
   u'sleaze',
   u'film',
   u'work',
   u'film',
   u'entertainment',
   u'value'],
  [u'hand',
   u'dramas',
   u'saving',
   u'private',
   u'ryan',
   u'unpleasantness',
   u'film',
   u'plot',
   u'character',
   u'end',
   u'goal',
   u'audience',
   u'story',
   u'character'],
  [u'summer',
   u'sensationalism',
   u'sleaze',
   u'commentary',
   u'trash',
   u'epic',
   u'sam',
   u'drama',
   u'character',
   u'stereotype'],
  [u'plot',
   u'impact',
   u'hysteria',
   u'murder',
   u'resident',
   u'north',
   u'neighborhood',
   u'murder'],
  [u'local', u'mix', u'personality', u'wheel', u'stereotype'],
  [u'man', u'goombahs'],
  [u'woman', u'split', u'girl', u'girl'],
  [u'payback',
   u'year',
   u'stereotyping',
   u'wheeling',
   u'stereotype',
   u'critic'],
  [u'example',
   u'resident',
   u'neighborhood',
   u'bunch',
   u'stereotype',
   u'critic',
   u'stereotyping'],
  [u'character',
   u'film',
   u'attempt',
   u'commentary.<br',
   u'exception',
   u'cast'],
  [u'cast', u'motion', u'scriptwise'],
  [u'miscasting'],
  [u'comedian', u'character', u'impersonation', u'night'],
  [u'guy', u'actor', u'serial', u'killer'],
  [u'performance', u'attention', u'neighborhood'],
  [u'performance', u'cinematography', u'film', u'virtues.<br']],
 [[u'majority'],
  [u'bit'],
  [u'rise',
   u'fall',
   u'serial',
   u'killer',
   u'bit',
   u'relationship',
   u'lifestyle',
   u'mafia',
   u'type'],
  [u'story', u'end', u'story'],
  [u'killer', u'film'],
  [u'><br', u'point'],
  [u'scene',
   u'killer',
   u'saturation',
   u'acting',
   u'throughout.<br',
   u'story',
   u'killing'],
  [u'end.<br']],
 [[u'film', u'effect', u'painting', u'caricature', u'group'],
  [u'problem', u'matter', u'kind', u'story'],
  [u'caricature', u'them.<br', u'caricature', u'home', u'ears', u'nose'],
  [u'character', u'film', u'lifestyle'],
  [u'storyline', u'character', u'film'],
  [u'run', u'time.<br', u'strike', u'fan', u'credit']],
 [[u'actor',
   u'performance',
   u'mask',
   u'script',
   u'dialogue',
   u'pattern',
   u'behavior',
   u'spiraling',
   u'care'],
  [u'character'],
  [u'character', u'development', u'growth', u'suffering', u'reason']],
 [[u'drama', u'tension', u'glance', u'gesture', u'boundary', u'thing'],
  [u'movie',
   u'work',
   u'leitmotif',
   u'self',
   u'identity',
   u'desire',
   u'limit',
   u'loss'],
  [u'viewer'],
  [u'palate', u'action'],
  [u'story']],
 [[u'movie', u'news', u'level', u'talent', u'piece', u'junk'],
  [u'director', u'appeal', u'matter', u'fodder', u'ticket', u'sale', u'flop'],
  [u'story',
   u'line',
   u'picture',
   u'feeling',
   u'mouse',
   u'maze',
   u'piece',
   u'cheese'],
  [u'revenge', u'kid', u'movie', u'number', u'stereotype'],
  [u'film', u'camerawork'],
  [u'gift', u'psyche', u'transporting', u'vision', u'scene']],
 [[u'title', u'film'],
  [u'summer', u'impression', u'film', u'serial', u'killer'],
  [u'portrait',
   u'street',
   u'life',
   u'summer',
   u'77',
   u'city.<br',
   u'film',
   u'character',
   u'neighborhood',
   u'reaction',
   u'threat'],
  [u'vinny', u'wife', u'characters.<br', u'problem', u'character'],
  [u'time'],
  [u'energy', u'life', u'anger', u'lust', u'turmoil'],
  [u'fight',
   u'scene',
   u'wife',
   u'disco',
   u'dance',
   u'scene',
   u'gabfest',
   u'film',
   u'editor?<br',
   u'film',
   u'chance',
   u'sense',
   u'fear',
   u'dread',
   u'menace',
   u'background'],
  [u'kind', u'menace', u'neighborhood', u'vigilante', u'groups.<br'],
  [u'disco',
   u'music',
   u'attention',
   u'costume',
   u'production',
   u'design',
   u'neighborhood',
   u'film',
   u'authenticity',
   u'rambling',
   u'script',
   u'life',
   u'person']],
 [[u'question', u'lip', u'month', u'terror'],
  [u'word',
   u'question',
   u'summer',
   u'person',
   u'exit',
   u'theater',
   u'summer',
   u'story',
   u'pack',
   u'thug',
   u'psychopath',
   u'year',
   u'depiction',
   u'killing',
   u'demon',
   u'head',
   u'frustration',
   u'manhunt'],
  [u'ensemble', u'loser', u'dog', u'life', u'love', u'honor', u'humanity'],
  [u'critic',
   u'establishment',
   u'stereotype',
   u'scene',
   u'newlywed',
   u'cheating',
   u'husband',
   u'sex',
   u'man'],
  [u'detective', u'center', u'field', u'catch'],
  [u'racist',
   u'musing',
   u'middle',
   u'woman',
   u'man',
   u'person',
   u'man',
   u'person',
   u'race',
   u'riot',
   u'history."<br',
   u'opening',
   u'pan',
   u'shot',
   u'arrival',
   u'disco',
   u'shot',
   u'goodfella',
   u'man',
   u'film',
   u'soul',
   u'purpose',
   u'passion'],
  [u'parade', u'character', u'screen', u'decency'],
  [u'victim', u'spree', u'summer', u'decade', u'havoc', u'city'],
  [u'hatred', u'man?"<br', u'question']],
 [[u'focus', u'goal', u'message'],
  [u'symbolism', u'stereotyping'],
  [u'exchange', u'word', u'dialog', u'class', u'rehearsal'],
  [u'substance', u'exchange', u'actor', u'emotion', u'stake'],
  [u'tear'],
  [u'inaccuracy', u'punk', u'rock', u'piercing', u'outfit'],
  [u'location'],
  [u'cum', u'fever', u'meaning', u'art']],
 [[u'movie', u'time'],
  [u'thought', u'try', u'mistake'],
  [u'movie',
   u'life',
   u'murder',
   u'neighborhood',
   u'summer',
   u'center',
   u'character',
   u'drug',
   u'problem',
   u'marriage',
   u'problem',
   u'scene',
   u'murder',
   u'shooting',
   u'fever'],
  [u'choice', u'reporter', u'movie', u'trust', u'stay', u'movie'],
  [u'scene', u'dog', u'speaking', u'voice', u'scene'],
  [u'case'],
  [u'film', u'dud']],
 [[u'hour',
   u'person',
   u'wife',
   u'schtupping',
   u'dog',
   u'rut',
   u'f-word',
   u'thanks.<br',
   u'movie',
   u'lot'],
  [u'character',
   u'fornicate',
   u'talk',
   u'swear',
   u'time',
   u'sort',
   u'character',
   u'development',
   u'sex',
   u'scene'],
  [u'plot',
   u'development',
   u'hour',
   u'murder',
   u'murder',
   u'scene',
   u'vinnie',
   u'stare',
   u'vinnie',
   u'wife',
   u'character',
   u'parent',
   u'house'],
  [u'photography', u'interplay', u'character'],
  [u'study', u'community', u'relationship']],
 [[u'movie', u'hint', u'perversion', u'cheating'],
  [u'movie', u'point', u'movement', u'dance', u'floor']],
 [[u'film', u'film'],
  [u'story', u'line'],
  [u'acting'],
  [u'track'],
  [u'editing']],
 [[u'sound', u'eyeball', u'version', u'grave'],
  [u'thing', u'opus', u'title'],
  [u'production'],
  [u'producer', u'money', u'obligation', u'sequel', u'director', u'movie'],
  [u'piece',
   u'garbage.<br',
   u'director',
   u'period',
   u'piece',
   u'place',
   u'time'],
  [u'fellow', u'nanny', u'dog', u'adventure', u'lifetime', u'coincidence'],
  [u'date', u'book', u'brother', u'science', u'cave'],
  [u'heroine',
   u'underworld',
   u'service',
   u'nanny',
   u'nanny',
   u'dream',
   u'nanny',
   u'job'],
  [u'supervisor'],
  [u'client', u'rock', u'star', u'doomsday', u'concert', u'career', u'dog'],
  [u'day', u'spa'],
  [u'arrival', u'taxi', u'motel', u'basket', u'jeep'],
  [u'basket', u'motel', u'management', u'pet', u'premise'],
  [u'dog', u'baby'],
  [u'guy', u'city', u'police', u'state', u'dictator', u'center'],
  [u'ruler', u'squad', u'raid', u'surface', u'clone', u'roughness'],
  [u'movie', u'comedy', u'satire', u'dictatorship'],
  [u'budget',
   u'action',
   u'director',
   u'shambles',
   u'science',
   u'fiction',
   u'saga']],
 [[u'story', u'tourist', u'sibling', u'nanny', u'dog'],
  [u'sibling',
   u'jeep',
   u'basket',
   u'dog',
   u'biscuit',
   u'nanny',
   u'way',
   u'cave',
   u'sibling',
   u'guess'],
  [u'reason', u'cave', u'place', u'caving', u'avail', u'sister'],
  [u'cave', u'earth', u'core'],
  [u'alien',
   u'habitant',
   u'rule',
   u'alien',
   u'question',
   u'world',
   u'own.<br',
   u'director',
   u'film',
   u'comment',
   u'film',
   u'half',
   u'film',
   u'sequel',
   u'movie',
   u'film',
   u'budget',
   u'piece',
   u'corner',
   u'humor',
   u'amusement',
   u'minute',
   u'life',
   u'world',
   u'center'],
  [u'star', u'rating', u'time', u'subtlety'],
  [u'example', u'alien', u'girl', u'alien', u'work', u'visa'],
  [u'girl', u'city', u'mistake'],
  [u'thing', u'idiocy', u'hour'],
  [u'film', u'money', u'it.<br', u'end', u'sister']],
 [[u'reviewer', u'reviews', u'taste'],
  [u'movie', u'depth', u'film', u'layer', u'emotion'],
  [u'undercurrent',
   u'love',
   u'submission',
   u'belief',
   u'taboo',
   u'time',
   u'class',
   u'race',
   u'relation',
   u'state',
   u'equality',
   u'guilt',
   u'yearning',
   u'hate',
   u'confusion',
   u'skin',
   u'aire',
   u'movie',
   u'flow',
   u'film',
   u'emotion',
   u'character',
   u'flaw',
   u'inside']],
 [[u'world', u'role', u'him???<br', u'year', u'gun', u'cop'],
  [u'clich',
   u'character',
   u'development',
   u'music',
   u'industry',
   u'cameo',
   u'film']],
 [[u'fetish', u'punk', u'movie']],
 [[u'star', u'movie'],
  [u'day', u'memory.<br', u'buddy', u'cop', u'movie'],
  [u'comedy', u'action', u'movie'],
  [u'overabundance',
   u'subplot',
   u'mask',
   u'storyline.<br',
   u'project',
   u'film',
   u'time'],
  [u'chemistry', u'diversion']],
 [[u'film', u'enjoyment', u'journey'],
  [u'plot',
   u'contrivance',
   u'standard',
   u'buddy',
   u'cop',
   u'film',
   u'character',
   u'end',
   u'film',
   u'sequence',
   u'crutch',
   u'interest.<br',
   u'filmmaker',
   u'job',
   u'character',
   u'thing',
   u'cop'],
  [u'opinion',
   u'force',
   u'view',
   u'bickering.<br',
   u'end',
   u'piece',
   u'escapism'],
  [u'estate', u'deal'],
  [u'affair', u'radio'],
  [u'affair'],
  [u'homicide',
   u'investigation<br',
   u'concern',
   u'actor',
   u'father',
   u'death'],
  [u'thing', u'plot', u'element', u'chase', u'time', u'ennui', u'crap'],
  [u'screenwriting',
   u'acrobatic',
   u'filmmaking.<br',
   u'chase',
   u'sequence',
   u'section',
   u'close',
   u'hour',
   u'field',
   u'estate',
   u'deal',
   u'perpetrator',
   u'gun'],
  [u'plot', u'line', u'joke'],
  [u'care',
   u'murder',
   u'plot',
   u'point',
   u'plot-line',
   u'eye',
   u'candy',
   u'chase',
   u'comprehension.<br',
   u'chase',
   u'story'],
  [u'formula', u'film', u'britches', u'waste', u'time'],
  [u'appearance'],
  [u'actor', u'film', u'like', u'film'],
  [u'film', u'thought', u'money'],
  [u'box', u'office', u'movie', u'actor', u'film', u'lead', u'role']],
 [[u'eye', u'writing', u'comedy'],
  [u'age'],
  [u'mix',
   u'action',
   u'comedy',
   u'polouse',
   u'idea',
   u'result',
   u'spoof',
   u'subgenre',
   u'reason',
   u'mercy',
   u'movie',
   u'kind',
   u'entertaining',
   u'formula'],
  [u'flop'],
  [u'title', u'disaster', u'taxi'],
  [u'<br', u'reason', u'case', u'saturation', u'flick', u'tv', u'decade'],
  [u'dealing', u'humor'],
  [u'matter', u'time'],
  [u'character', u'cop', u'job', u'background', u'city'],
  [u'renewal', u'clich\xe9'],
  [u'role', u'person', u'comedy'],
  [u'directing', u'guy', u'lack'],
  [u'time'],
  [u'place',
   u'face',
   u'charm',
   u'place',
   u'star',
   u'cameo',
   u'moments).<br',
   u'movie',
   u'star',
   u'glamour',
   u'movie',
   u'case',
   u'star',
   u'non-chemistry',
   u'screen',
   u'chemistry',
   u'screen'],
  [u'performance', u'time']],
 [[u'movie'],
  [u'car', u'scene', u'ad', u'nauseum'],
  [u'scene', u'grab', u'family', u'car', u'kid'],
  [u'philosophy', u'right', u'writer', u'thought'],
  [u'subplot', u'filler'],
  [u'body', u'burger', u'crime', u'scene'],
  [u'ground', u'guy'],
  [u'buddy', u'cop', u'phone', u'mystic', u'waltz', u'slap', u'wrist'],
  [u'reason',
   u'cheat',
   u'fraud',
   u'realtor',
   u'price',
   u'producer',
   u'house',
   u'commission'],
  [u'cop', u'movie', u'street', u'care', u'world', u'bystander'],
  [u'person',
   u'round',
   u'<br',
   u'scriptwriting',
   u'action',
   u'sequence',
   u'plot',
   u'sidestory',
   u'attempt',
   u'root'],
  [u'thing'],
  [u'midpoint', u'movie'],
  [u'second', u'tune'],
  [u'waste', u'time', u'movie', u'doubt', u'point', u'career']],
 [[u'film'],
  [u'estate',
   u'client',
   u'yoga',
   u'school',
   u'chick',
   u'time',
   u'investigation',
   u'ex-girlfriend',
   u'investigator',
   u'radio',
   u'man',
   u'killing',
   u'club',
   u'ex-cop',
   u'father',
   u'year',
   u'car',
   u'chase',
   u'attempt',
   u'humor',
   u'gist',
   u'turkey']],
 [[u'character',
   u'actor',
   u'yoga',
   u'instructor',
   u'cop',
   u'way',
   u'mean',
   u'yoga',
   u'girl',
   u'jacuzzi',
   u'work'],
  [u'fact', u'dad', u'cop', u'crime', u'duo'],
  [u'character',
   u'estate',
   u'investigator',
   u'ex-wife',
   u'radio',
   u'character',
   u'time',
   u'time'],
  [u'character', u'dialogue'],
  [u'clich\xe9',
   u'book',
   u'bar',
   u'day',
   u'drink',
   u'bartender',
   u'duo',
   u'affair'],
  [u'hartnett',
   u'dad',
   u'killer',
   u'hell',
   u'mess.<br',
   u'plot',
   u'continuity',
   u'car',
   u'hell',
   u'repo',
   u'guy'],
  [u'morgue', u'clue', u'crime', u'scene', u'earring', u'body'],
  [u'female', u'officer'],
  [u'car', u'car', u'way', u'car'],
  [u'guy', u'building', u'elevator', u'hell', u'floor', u'guy'],
  [u'guy', u'hartnett', u'car', u'estate', u'deal'],
  [u'guy', u'record', u'exec'],
  [u'motivation', u'group', u'rapper', u'label'],
  [u'label', u'warning', u'group'],
  [u'business', u'plan'],
  [u'guy', u'end.<br']],
 [[u'film',
   u'millionaire',
   u'bunch',
   u'person',
   u'game',
   u'winner',
   u'dollar'],
  [u'acting', u'movie', u'sense'],
  [u'bit', u'laugh', u'movie', u'woman', u'breast', u'time', u'character'],
  [u'monster', u'movie', u'screen'],
  [u'case', u'piece', u'junk']],
 [[u'head', u'scratcher', u'film', u'trade', u'eighty'],
  [u'crackpot',
   u'millionaire',
   u'person',
   u'hotel',
   u'person',
   u'contest',
   u'contestant'],
  [u'series', u'prank', u'guest', u'adult', u'circumstance', u'hotel', u'bar'],
  [u'scene',
   u'excuse',
   u'camera',
   u'female',
   u'body',
   u'dance',
   u'number',
   u'crossover',
   u'bandstand',
   u'aerobics',
   u'complete',
   u'hooker'],
  [u'hesitation',
   u'person',
   u'dance',
   u'scene',
   u'hammer',
   u'nail',
   u'coffin'],
  [u'minute', u'darts', u'plot', u'twist', u'inspiration', u'scene', u'mess'],
  [u'coot', u'control'],
  [u'hotel', u'force', u'prop'],
  [u'actor',
   u'day',
   u'job',
   u'point',
   u'scene',
   u'yuppie',
   u'closet',
   u'skeleton',
   u'skull']],
 [[u'film'],
  [u'film',
   u'look',
   u'household',
   u'colonial',
   u'family',
   u'viewer',
   u'perspective',
   u'life',
   u'character',
   u'interaction'],
  [u'development', u'character'],
  [u'example', u'theme', u'story', u'inability', u'relationship'],
  [u'portrayal',
   u'way',
   u'frame',
   u'story',
   u'scene',
   u'return',
   u'childhood',
   u'home',
   u'girl',
   u'lack',
   u'intimacy',
   u'film',
   u'character',
   u'viewer',
   u'development',
   u'lack',
   u'protagonist'],
  [u'stagnation', u'film', u'character', u'development', u'plot'],
  [u'film',
   u'deal',
   u'tension',
   u'character',
   u'man',
   u'life',
   u'friction',
   u'viewer'],
  [u'scene'],
  [u'work', u'standpoint', u'film', u'adventure', u'drama', u'choice']],
 [[u'mess', u'movie', u'man', u'monster', u'a-go'],
  [u'end', u'conclusion', u'film', u'fact', u'shocker'],
  [u'story',
   u'millionaire',
   u'group',
   u'person',
   u'mansion',
   u'series',
   u'game'],
  [u'plot', u'proceedings', u'verge'],
  [u'character'],
  [u'production', u'value', u'question', u'movie', u'standard'],
  [u'truth']],
 [[u'film', u'bond', u'company', u'credit', u'film'],
  [u'acting', u'plot', u'jump', u'sense'],
  [u'bond', u'company', u'footage', u'music', u'library', u'music', u'guess']],
 [[u'film'],
  [u'plot'],
  [u'motivation', u'wealth'],
  [u'character', u'actor', u'film'],
  [u'threat', u'person'],
  [u'mist', u'machine', u'hall'],
  [u'film'],
  [u'person', u'chicken', u'ax'],
  [u'climaxe', u'film']],
 [[u'movie', u'premise', u'person', u'fear', u'dollar'],
  [u'movie'],
  [u'scene', u'way', u'dancing', u'scene'],
  [u'scene', u'excuse', u'camera', u'body'],
  [u'acting', u'line', u'awfulness'],
  [u'end', u'movie', u'end', u'twist', u'sense', u'rest', u'movie'],
  [u'director', u'stuff', u'plot', u'movie', u'point'],
  [u'thing', u'person', u'hall', u'rest', u'mess']],
 [[u'half', u'hour', u'achievement'],
  [u'sequence', u'moment', u'director', u'stinker', u'way'],
  [u'concept', u'millionaire', u'loser', u'mansion', u'elimination', u'game'],
  [u'participant', u'bonehead', u'time', u'folk', u'sadist', u'murderer'],
  [u'film', u'narrator', u'lot', u'stuff', u'plot', u'minute', u'bimbo'],
  [u'hour',
   u'textbook',
   u'rebane-production',
   u'plot',
   u'twist',
   u'dialog',
   u'lack',
   u'excitement'],
  [u'budget', u'murder', u'sequence', u'director'],
  [u'footage', u'disco', u'dancing', u'girl', u'amateur', u'rock', u'band'],
  [u'film', u'climaxe', u'bit', u'satisfying'],
  [u'film']],
 [[u'cheesiest', u'monster', u'film', u'time'],
  [u'joke', u'theater'],
  [u'sort', u'monster'],
  [u'movie', u'toilet'],
  [u'person', u'pile', u'trash', u'need'],
  [u'explain', u'sheer', u'stupidity', u'bucket', u'crap']],
 [[u'story', u'monster', u'plant', u'water'],
  [u'monster', u'film', u'lot', u'person', u'monster', u'way'],
  [u'point', u'monster', u'scale', u'scene', u'puppy'],
  [u'exploitation', u'film', u'frame', u'mind'],
  [u'complaint', u'print', u'release', u'video', u'tape', u'copy', u'year']],
 [[u'work', u'fx', u'statement', u'damage', u'monster', u'movie'],
  [u'lot',
   u'merit',
   u'scene',
   u'monster',
   u'river',
   u'water',
   u'luck',
   u'woman',
   u'disappearance'],
  [u'<br',
   u'stuff',
   u'semi-interesting',
   u'peek',
   u'culture',
   u'father',
   u'walking',
   u'town',
   u'flock',
   u'piece',
   u'semblance'],
  [u'director', u'carradine', u'dialog'],
  [u'look', u'monster', u'action', u'appeal'],
  [u'filmmaker',
   u'lot',
   u'problem',
   u'picture',
   u'case',
   u'monster',
   u'double-feature',
   u'print',
   u'transfer',
   u'quality'],
  [u'course', u'commentary', u'robot', u'mystery', u'roast', u'turkey']],
 [[u'guy', u'woman', u'lot', u'swearing', u'monster', u'depth', u'lake'],
  [u'interview',
   u'fangorium',
   u'bulk',
   u'film',
   u'footage',
   u'child',
   u'character',
   u'turn',
   u'credit'],
  [u'end', u'result'],
  [u'monster', u'look', u'feel', u'tv', u'movie', u'background'],
  [u'entertainment', u'face', u'reminder', u'age', u'type']],
 [[u'monster', u'mind', u'movie', u'factory'],
  [u'water',
   u'town',
   u'catfish-like',
   u'beast',
   u'predilection',
   u'lamb',
   u'woman'],
  [u'man', u'boss', u'hand', u'secretary', u'rear', u'pun', u'story'],
  [u'reporter', u'story'],
  [u'seventy', u'market', u'news', u'town'],
  [u'factory',
   u'water',
   u'way',
   u'town',
   u'job',
   u'local',
   u'economic',
   u'way',
   u'enviro-marxism'],
  [u'action', u'evidence'],
  [u'currency', u'exchange', u'check', u'story', u'credit', u'film'],
  [u'filming',
   u'year',
   u'foot',
   u'throat',
   u'monster',
   u'child',
   u'character',
   u'daughter',
   u'billing'],
  [u'quality', u'scene', u'tar', u'camera'],
  [u'scene', u'night'],
  [u'monster', u'head'],
  [u'brother', u'proof', u'nepotism', u'industry'],
  [u'dreck']],
 [[u'movie',
   u'life',
   u'perspective',
   u'girl',
   u'father',
   u'official',
   u'colonial',
   u'government',
   u'family',
   u'family'],
  [u'sense', u'movie', u'time', u'period', u'way']],
 [[u'night', u'horror', u'site', u'movie', u'fun', u'movie', u'movie'],
  [u'movie', u'value', u'horror', u'flick', u'movie'],
  [u'check',
   u'movie',
   u'right',
   u'episode',
   u'movie',
   u'plot',
   u'production',
   u'lot',
   u'speed',
   u'connection']],
 [[u'example',
   u'self',
   u'vanity',
   u'project',
   u'crew',
   u'member',
   u'burning',
   u'stake',
   u'sequence',
   u'piece',
   u'sh*t',
   u'lot',
   u'piece',
   u'sh*t'],
  [u'moment',
   u'trouble',
   u'line',
   u'courtyard',
   u'location',
   u'shrine',
   u'onlooker',
   u'respect',
   u'man',
   u'apology',
   u'behavior'],
  [u'case',
   u'crew',
   u'job',
   u'deferment',
   u'plenty',
   u'story',
   u'night',
   u'producer',
   u'year',
   u'son',
   u'tiger',
   u'trap',
   u'leg']],
 [[u'summer', u'stinker', u'snake', u'statement'],
  [u'return', u'month', u'hyper-indulgent', u'eyeball'],
  [u'stuff', u'head', u'in.<br', u'idea', u'outing'],
  [u'approach', u'effect'],
  [u'story',
   u'blockbuster',
   u'way',
   u'audience',
   u'money',
   u'effect',
   u'hype'],
  [u'atmosphere', u'involvement'],
  [u'film',
   u'crap',
   u'reviews',
   u'critic',
   u'movie',
   u'soul',
   u'heart',
   u'tender',
   u'character',
   u'moment'],
  [u'superhero', u'dozen', u'time', u'year', u'regard'],
  [u'plot', u'garbage'],
  [u'landmass', u'film'],
  [u'junk', u'hour'],
  [u'cast'],
  [u'screen',
   u'personality',
   u'mahogany',
   u'hat-stand',
   u'journalist',
   u'agent',
   u'judgement'],
  [u'cast', u'member'],
  [u'weird-looking', u'girls.<br', u'year', u'film']],
 [[u'eye', u'example', u'ego', u'king', u'movie'],
  [u'hero', u'respect', u'tight'],
  [u'start', u'movie', u'chunk', u'kryptonite', u'throat'],
  [u'choise', u'lois', u'lane', u'ass', u'reporter', u'movie', u'schoolgirl'],
  [u'plot', u'son', u'acting'],
  [u'movie', u'thing'],
  [u'portrayal', u'movie'],
  [u'movie', u'cast', u'lois', u'course', u'story'],
  [u'movie', u'hill', u'eye', u'movie']],
 [[u'period', u'space', u'planet', u'return'],
  [u'son'],
  [u'plot',
   u'evil',
   u'plan',
   u'crystal',
   u'land',
   u'movie',
   u'tv',
   u'smallville',
   u'expectation',
   u'return',
   u'version'],
  [u'story', u'boring', u'lack', u'emotion'],
  [u'addition', u'romance'],
  [u'year', u'actress', u'role', u'reporter', u'mother', u'year', u'boy'],
  [u'year', u'teenager', u'smallville'],
  [u'character', u'caricature'],
  [u'spite', u'year', u'rest', u'lead', u'cast'],
  [u'conclusion', u'soap', u'opera'],
  [u'vote', u'return']],
 [[u'fan',
   u'comic',
   u'series',
   u'film',
   u'attempt',
   u'real-estate',
   u'conversion',
   u'superman-beaten-up-while-wearing-kryptonite',
   u'sequence',
   u'inconsistency',
   u'ocean',
   u'kryptonite',
   u'rest',
   u'continent',
   u'space'],
  [u'kind',
   u'thing',
   u'gut',
   u'skill',
   u'superpower',
   u'invulnerability',
   u'human.<br'],
  [u'universe', u'scheme']],
 [[u'book', u'target', u'year'],
  [u'return', u'movie'],
  [u'<br', u'question', u'reader'],
  [u'issue', u'movie', u'scene', u'bar', u'scene'],
  [u'hour'],
  [u'let', u'amadeus'],
  [u'effect', u'way.<br', u'scenario'],
  [u'cinema'],
  [u'time', u'producer', u'story', u'book'],
  [u'story', u'story', u'starter'],
  [u'money', u'person', u'quality', u'product'],
  [u'point'],
  [u'surprise'],
  [u'thing',
   u'book',
   u'hero',
   u'personality',
   u'motivation',
   u'doubt',
   u'fear',
   u'depth'],
  [u'unit', u'attention', u'screen'],
  [u'harder', u'laugh', u'conclusion'],
  [u'<br', u'movie', u'lady', u'gent', u'camp']],
 [[u'movie',
   u'copy',
   u'villain',
   u'spice.<br',
   u'plan',
   u'movie',
   u'lot',
   u'forced.<br',
   u'script',
   u'stuff',
   u'luthor',
   u'museum',
   u'lady).<br',
   u'story',
   u'thing',
   u'sequel',
   u'talent',
   u'director',
   u'copy.<br']],
 [[u'movie', u'thinking'],
  [u'spaceship',
   u'crash',
   u'land',
   u'year',
   u'adult',
   u'board',
   u'thing',
   u'crash'],
  [u'civilization', u'landing', u'gear'],
  [u'industry', u'movie', u'black'],
  [u'person', u'darkie', u'area']],
 [[u'film'],
  [u'expectation'],
  [u'think', u'thing'],
  [u'point'],
  [u'graphic'],
  [u'plot',
   u'<br',
   u'question',
   u'hour',
   u'movie',
   u'scene',
   u'bit',
   u'hero',
   u'villain',
   u'screen',
   u'time',
   u'son',
   u'henchman',
   u'half',
   u'budget',
   u'hospital',
   u'doctor'],
  [u'<br', u'person', u'reviews', u'movie?<br'],
  [u'<br', u'continent', u'krypyonite', u'kryptonite', u'rock', u'head'],
  [u'continent',
   u'thing',
   u'fear',
   u'rock',
   u'<br',
   u'writer',
   u'half-wit',
   u'mistake']],
 [[u'film'],
  [u'picture', u'mind'],
  [u'paper', u'premise'],
  [u'film'],
  [u'story', u'flashback', u'filmmaker'],
  [u'character', u'day', u'audience'],
  [u'flashback',
   u'technique',
   u'director',
   u'audience',
   u'girl',
   u'adulthood',
   u'damage',
   u'viewer',
   u'sense',
   u'story',
   u'emotion'],
  [u'filmmaker', u'face', u'scream', u'childhood'],
  [u'girl', u'fine'],
  [u'mother', u'action', u'flashback', u'aspect'],
  [u'<br',
   u'movie',
   u'deal',
   u'time',
   u'period',
   u'present',
   u'scene',
   u'fat'],
  [u'scene', u'place'],
  [u'film', u'rhythm', u'editing', u'story'],
  [u'story', u'editing', u'film'],
  [u'career', u'reason', u'debut']],
 [[u'singer', u'movie', u'crash', u'box', u'office', u'record'],
  [u'structure',
   u'color',
   u'scheme',
   u'dialog',
   u'clown',
   u'alien',
   u'technology',
   u'fun',
   u'magic',
   u'movie',
   u'thing',
   u'character',
   u'superhero'],
  [u'core',
   u'thing.<br',
   u'trouble',
   u'supersoftie',
   u'facet',
   u'movie',
   u'time.<br',
   u'movie'],
  [u'case',
   u'boring',
   u'study',
   u'minute',
   u'person',
   u'difference.<br',
   u'movie',
   u'joke'],
  [u'skywalker', u'thing'],
  [u'soul', u'love', u'trouble', u'drama', u'person'],
  [u'character', u'yentl', u'remake.<br', u'return'],
  [u'supersadlysoftie',
   u'stand',
   u'door.<br',
   u'singer',
   u'legend',
   u'kryptonite',
   u'movie'],
  [u'sequel',
   u'<br',
   u'time',
   u'singer',
   u'superhero',
   u'movie',
   u'superlame',
   u'soap'],
  [u'superhero',
   u'movie',
   u'fantasy',
   u'lot',
   u'fun',
   u'magic.<br',
   u'movie',
   u'chocolate',
   u'box',
   u'cover'],
  [u'sort',
   u'lot',
   u'talk',
   u'joke',
   u'view',
   u'action',
   u'scene',
   u'piece',
   u'quality.<br',
   u'boring',
   u'patchwork',
   u'movie',
   u'live.<br',
   u'cast',
   u'strategy',
   u'sequel',
   u'year',
   u'rest'],
  [u'year', u'star', u'reporter'],
  [u'year', u'year', u'planet', u'reporter', u'wroting', u'night'],
  [u'bit', u'movie'],
  [u'posey'],
  [u'spacey', u'terrain.<br', u'fun'],
  [u'difference.<br', u'end'],
  [u'superhero', u'day'],
  [u'talk',
   u'god',
   u'week',
   u'god.<br',
   u'movie',
   u'parallel',
   u'universe.<br',
   u'warner',
   u'brother',
   u'flick',
   u'disaster',
   u'history'],
  [u'money.<br',
   u'message',
   u'feeling',
   u'person',
   u'thousand',
   u'movie',
   u'tv-show',
   u'magnolia'],
  [u'frog', u'superwoman', u'course.<br'],
  [u'fact', u'hole', u'passion', u'comic', u'movie', u'hour', u'life.<br'],
  [u'smilla', u'brother'],
  [u'hulk']],
 [[u'need'],
  [u'potential', u'home-wrecker', u'stalker'],
  [u'type', u'character', u'hero'],
  [u'skit', u'result', u'case', u'child', u'father'],
  [u'movie']],
 [[u'movie', u'attempt', u'money', u'theme'],
  [u'acting', u'effect', u'plot'],
  [u'year', u'girlfriend', u'son', u'son', u'opinion', u'year'],
  [u'continent', u'order', u'land']],
 [[u'movie', u'angle'],
  [u'movie'],
  [u'case', u'clothe'],
  [u'fact', u'member', u'audience', u'right'],
  [u'superman',
   u'level',
   u'connection',
   u'priority',
   u'number',
   u'character',
   u'torn'],
  [u'eating', u'avg'],
  [u'person.<br', u'dad', u'dad', u'story', u'step', u'way'],
  [u'person', u'love', u'person', u'highschool', u'student', u'person'],
  [u'kid', u'thought', u'action'],
  [u'return', u'child', u'heart', u'soul', u'superpower', u'movie'],
  [u'power',
   u'love',
   u'world',
   u'plot',
   u'sleeve.<br',
   u'love',
   u'story',
   u'humanity',
   u'win',
   u'nature',
   u'power',
   u'nature',
   u'thing',
   u'superpower',
   u'power',
   u'love'],
  [u'connection'],
  [u'ineresting', u'use', u'superpower'],
  [u'brute',
   u'strength.<br',
   u'coal',
   u'diamond',
   u'woman',
   u'thing',
   u'power',
   u'saving.<br',
   u'stake',
   u'return'],
  [u'damage',
   u'nemesis',
   u'world',
   u'domination',
   u'plot',
   u'suffering',
   u'effect',
   u'person',
   u'middle',
   u'damage',
   u'plot'],
  [u'glob',
   u'crystal',
   u'space',
   u'superman',
   u'order',
   u'plot',
   u'access',
   u'superpower'],
  [u'missile', u'direction', u'mandate', u'history', u'life', u'year'],
  [u'guy', u'genius', u'villain', u'tactic', u'superpower', u'computer'],
  [u'aggression',
   u'computer',
   u'advance',
   u'acid',
   u'computer',
   u'computer',
   u'aggression'],
  [u'figure', u'strength']],
 [[u'day',
   u'day',
   u'kind',
   u'fan',
   u'hope',
   u'movie',
   u'end',
   u'movie',
   u'nature',
   u'change',
   u'character',
   u'powers.<br',
   u'element',
   u'movie',
   u'version.<br',
   u'shyster',
   u'conman'],
  [u'luthor',
   u'victim',
   u'writing',
   u'dialog.<br',
   u'henchman',
   u'book',
   u'henchman'],
  [u'evil', u'underling', u'trouble', u'disappointment', u'movie'],
  [u'fan', u'movie', u'soul'],
  [u'reporter', u'truth', u'story'],
  [u'langella', u'stooge'],
  [u'story', u'paper', u'paper', u'thing'],
  [u'story', u'mystery', u'prison.<br', u'thing', u'langella'],
  [u'actor', u'undercurrent', u'water'],
  [u'routh', u'actor'],
  [u'line', u'movie'],
  [u'movement', u'movement', u'finger', u'effect', u'way'],
  [u'journalist', u'writer', u'actor', u'movie'],
  [u'moment', u'them.<br', u'plot'],
  [u'return', u'world', u'arm'],
  [u'luthor', u'chance', u'score', u'man', u'steel.<br', u'hero', u'universe'],
  [u'piece',
   u'meteorite',
   u'museum',
   u'prison',
   u'knowledge',
   u'power',
   u'weakness',
   u'dot',
   u'kryptonite',
   u'him.<br',
   u'movie',
   u'thing',
   u'thing'],
  [u'action', u'sequence']],
 [[u'movie',
   u'tribute',
   u'scene',
   u'visual',
   u'credit',
   u'pay',
   u'homage',
   u'sweeping',
   u'credit',
   u'film.<br',
   u'stuff'],
  [u'kind', u'ruckus', u'farm', u'portion', u'life', u'debris', u'cornfield'],
  [u'faints.<br', u'scene', u'close-up', u'lady'],
  [u'face', u'end', u'scene', u'instance', u'film', u'drive', u'stone'],
  [u'guy'],
  [u'human',
   u'movie',
   u'kind',
   u'plot',
   u'population.<br',
   u'job',
   u'year',
   u'trip'],
  [u'kid'],
  [u'upset',
   u'control',
   u'strength',
   u'extent',
   u'picture',
   u'frame.<br',
   u'point',
   u'kind',
   u'jet',
   u'kind',
   u'space',
   u'shuttle'],
  [u'kind', u'event', u'account', u'television'],
  [u'film', u'person', u'summer.<br', u'event', u'disaster', u'soda'],
  [u'theater', u'movie', u'slide', u'entirety'],
  [u'son', u'school', u'graduation', u'return', u'theater', u'need'],
  [u'half', u'hour', u'thing'],
  [u'everybody'],
  [u'subplot', u'family', u'x-ray', u'vision', u'super-hearing'],
  [u'guy.<br', u'kind', u'contest', u'villain', u'behavior', u'end', u'movie'],
  [u'dollars.<br', u'point', u'thing', u'start', u'finale'],
  [u'thing',
   u'water',
   u'thing',
   u'wait',
   u'again.<br',
   u'guy',
   u'girlfriend',
   u'bit.<br',
   u'life'],
  [u'movie', u'year', u'nursing', u'home'],
  [u'return'],
  [u'viewer', u'skeleton', u'beard', u'now.<br', u'seat', u'house'],
  [u'movie', u'review', u'joke', u'person', u'dog', u'dog', u'dog', u'movie']],
 [[u'effect'],
  [u'film', u'hero', u'hero', u'archetype'],
  [u'film'],
  [u'choice', u'problem', u'film', u'depth'],
  [u'film', u'hero', u'comic', u'person', u'mind'],
  [u'waste',
   u'money',
   u'direction',
   u'film',
   u'taken.<br',
   u'instance',
   u'villain',
   u'corporatism',
   u'domination',
   u'totalitarianism'],
  [u'incarnation.<br']],
 [[u'effect', u'game'],
  [u'thing', u'film'],
  [u'fact', u'note', u'word', u'review', u'swearing'],
  [u'<br', u'complaint', u'film', u'complaint'],
  [u'complaint',
   u'cheesiness',
   u'plot',
   u'twist',
   u'person',
   u'mile',
   u'son',
   u'child'],
  [u'movie', u'gimmick', u'child'],
  [u'<br', u'complaint', u'fact', u'continent', u'kryptonite', u'space'],
  [u'book', u'guy'],
  [u'book', u'kryptonite', u'strength', u'foot'],
  [u'idea', u'island', u'weakness', u'space', u'business', u'project'],
  [u'concept',
   u'movie',
   u'title',
   u'character',
   u'stake',
   u'heart',
   u'spaceship',
   u'garlic',
   u'sun'],
  [u'continent',
   u'kryptonite',
   u'space',
   u'fall',
   u'atmosphere',
   u're-entry',
   u'splattering',
   u'park',
   u'ground'],
  [u'<br',
   u'complaint',
   u'fact',
   u'movie-goer',
   u'face',
   u'symbolism',
   u'movie'],
  [u'allegory', u'piece', u'primary', u'weakness'],
  [u'crucifixion',
   u'scene',
   u'stab',
   u'kryptonite',
   u'spear',
   u'slam',
   u'face',
   u'brick',
   u'symbolism',
   u'man',
   u'steel',
   u'future'],
  [u'movie', u'return', u'speaking', u'luthor', u'complaint', u'depiction'],
  [u'business', u'tycoon', u'comic', u'try', u'world'],
  [u'luthor',
   u'return',
   u'movie',
   u'theatrical',
   u'dunce',
   u'scheme',
   u'world'],
  [u'loyalty', u'character', u'movie', u'film', u'travesty'],
  [u'movie', u'fact', u'person', u'reviews'],
  [u'opinion', u'movie', u'opinion']],
 [[u'story', u'half', u'execution'],
  [u'dialog', u'un-sparkling', u'boring.<br', u'character'],
  [u'guy', u'couple', u'sword', u'properly.<br'],
  [u'telekenisis', u'card', u'float', u'strength', u'foot', u'air'],
  [u'heck', u'helicopter'],
  [u'replacement',
   u'fight',
   u'film',
   u'proof',
   u'wire',
   u'work',
   u'fight',
   u'coordinator'],
  [u'replacement',
   u'fight',
   u'fighter',
   u'comic',
   u'choreography',
   u'film',
   u'memory'],
  [u'stunt', u'coordinator', u'shoulder', u'effect', u'break', u'mutant'],
  [u'mutant', u'cell', u'power', u'quicksilver', u'nod'],
  [u'bullet', u'memory'],
  [u'freaking', u'bullet', u'hole', u'adamantium', u'skull'],
  [u'sorry', u'liev', u'man', u'sabretooth', u'script'],
  [u'villain'],
  [u'film', u'epic', u'lameness.<br', u'level'],
  [u'story', u'actor', u'execution']],
 [[u'character', u'character', u'book', u'history'],
  [u'sequel', u'book', u'entertainment'],
  [u'movie'],
  [u'idea', u'movie', u'movie'],
  [u'character',
   u'movie',
   u'movie',
   u'character',
   u'book',
   u'adventure.<br',
   u'reason',
   u'competition'],
  [u'plot', u'development', u'movie'],
  [u'entertainment'],
  [u'action', u'movie'],
  [u'effect',
   u'element',
   u'suspense',
   u'event',
   u'movie',
   u'movie',
   u'concept',
   u'dozen',
   u'time'],
  [u'course',
   u'movie',
   u'piece',
   u'everybody',
   u'clich\xe9s',
   u'chain',
   u'event',
   u'connection',
   u'enough.<br',
   u'problem'],
  [u'action',
   u'movie',
   u'action',
   u'movie',
   u'way',
   u'lot',
   u'plot',
   u'hole',
   u'character',
   u'stupidity'],
  [u'flaw', u'title'],
  [u'home', u'circumstance'],
  [u'brother', u'liev'],
  [u'secret', u'team', u'soldier'],
  [u'government'],
  [u'year', u'lumberjack', u'time'],
  [u'guinneapig', u'bunch', u'scientist', u'metal', u'war', u'animal'],
  [u'guy', u'fighting', u'memory', u'cue', u'movie.<br'],
  [u'movie'],
  [u'scene',
   u'action',
   u'hero',
   u'villain',
   u'character',
   u'line',
   u'couch',
   u'audience',
   u'suit'],
  [u'guy'],
  [u'mmhm',
   u'right',
   u'line',
   u'dialog',
   u'line',
   u'thing',
   u'plausibility',
   u'waste',
   u'time'],
  [u'movie', u'reason', u'entertaining', u'favor', u'origin']],
 [[u'story', u'girl', u'colonial', u'that.<br', u'thing'],
  [u'longing', u'race'],
  [u'expression', u'story', u'servant', u'woman'],
  [u'desire', u'girl', u'time'],
  [u'dance.<br', u'aspect', u'film', u'laziness', u'colonial'],
  [u'night', u'animal']],
 [[u'cash', u'cow', u'franchise'],
  [u'showcase'],
  [u'series', u'event'],
  [u'iteration', u'fight', u'scene', u'exposition', u'alliance'],
  [u'clich\xe9', u'meter', u'chart', u'primal', u'scream', u'girlfriend'],
  [u'renegade', u'commander'],
  [u'double'],
  [u'failure', u'nemese', u'melee'],
  [u'spy', u'hero', u'arch-nemesis'],
  [u'mastermind', u'honor', u'employee'],
  [u'couple', u'care', u'hero', u'trouble'],
  [u'death', u'party', u'scene', u'coup', u'grace'],
  [u'government', u'agency'],
  [u'abandonment', u'squad', u'protest', u'slaughter', u'innocent'],
  [u'scientist', u'killing', u'machine', u'creation'],
  [u'government', u'weapon', u'successor'],
  [u'heart', u'monitor', u'pulse'],
  [u'foe'],
  [u'relief', u'character', u'understatement', u'comment'],
  [u'psychopath', u'revel', u'rampage'],
  [u'goliath', u'series', u'wall', u'trauma'],
  [u'man', u'dispatch', u'dozen', u'gun', u'enemy', u'swordplay'],
  [u'sense', u'law', u'physics', u'biology', u'chemistry'],
  [u'antagonist', u'murder', u'justification', u'crusade.<br', u'exhausting']],
 [[u'film', u'film'],
  [u'type', u'movie', u'popcorn', u'graphic'],
  [u'mind', u'movie'],
  [u'popcorn',
   u'action',
   u'effect',
   u'film',
   u'cliff',
   u'viewer',
   u'character',
   u'film',
   u'adaptation',
   u'film'],
  [u'film', u'reason'],
  [u'character', u'film'],
  [u'rest', u'character', u'wayside', u'way', u'eye-candy'],
  [u'character',
   u'30-minute',
   u'surprise',
   u'film.<br',
   u'boss',
   u'film',
   u'adaptation',
   u'character',
   u'development',
   u'way'],
  [u'filmmaker', u'ass', u'character', u'character.<br']],
 [[u'movie'],
  [u'character',
   u'opinion',
   u'story',
   u'arch.<br',
   u'movie',
   u'production',
   u'expectation',
   u'movie'],
  [u'actor',
   u'movie',
   u'movie',
   u'actor',
   u'acting',
   u'screw',
   u'movie',
   u'up.<br',
   u'film',
   u'lot',
   u'character',
   u'plot',
   u'fan',
   u'film',
   u'maker',
   u'comics.<br',
   u'fan',
   u'xmen',
   u'story',
   u'movie'],
  [u'project',
   u'relationship',
   u'motivation',
   u'wolverine',
   u'million',
   u'movie',
   u'revenge',
   u'death',
   u'one.<br'],
  [u'movie',
   u'moment',
   u'school',
   u'man',
   u'enemy',
   u'force',
   u'family',
   u'flick',
   u'violence',
   u'marvel',
   u'hero.<br',
   u'feeling',
   u'dej\xe1',
   u'v\xf9',
   u'movie',
   u'adamantium',
   u'skeleton',
   u'kind',
   u'sense',
   u'movie',
   u'wolverine',
   u'character',
   u'back-story',
   u'mystery',
   u'nature',
   u'character']],
 [[u'synopsis',
   u'<br',
   u'story',
   u'past',
   u'relationship',
   u'program."<br',
   u'past',
   u'relationship',
   u'connection'],
  [u'point',
   u'scene',
   u'child',
   u'run',
   u'montage',
   u'war',
   u'scene',
   u'lifespan',
   u'government',
   u'team',
   u'assassins.<br',
   u'way',
   u'relationship',
   u'brother'],
  [u'complex'],
  [u'<br', u'element', u'movie'],
  [u'element', u'revenge', u'story', u'romance'],
  [u'love', u'wood', u'rot'],
  [u'character',
   u'plot',
   u'surprise.<br',
   u'weapon',
   u'program',
   u'procedure'],
  [u'home', u'couple'],
  [u'man', u'barn'],
  [u'wonder',
   u'fate',
   u'them?<br',
   u'film',
   u'book',
   u'reason',
   u'amnesia',
   u'fact',
   u'evil',
   u'coldblooded.<br',
   u'case',
   u'horror',
   u'lifestyle',
   u'villain',
   u'world',
   u'team',
   u'mates?<br',
   u'x2',
   u'secret',
   u'work'],
  [u'violence', u'action', u'native', u'land', u'minute', u'screen'],
  [u'<br', u'man'],
  [u'leash', u'brother', u'agent', u'thought'],
  [u'together.<br',
   u'conflict',
   u'duality',
   u'all.<br',
   u'character',
   u'conflict',
   u'story'],
  [u'rubber',
   u'claws.<br',
   u'ton',
   u'error',
   u'film',
   u'trilogy',
   u'introduction',
   u'script.<br',
   u'memory-erasing',
   u'bullet'],
  [u'agent',
   u'agent',
   u'bullet',
   u'bomb',
   u'all.<br',
   u'problem',
   u'film',
   u'ton',
   u'mutant'],
  [u'character', u'window', u'dressing', u'story'],
  [u'film',
   u'minute',
   u'max',
   u'version',
   u'tank',
   u'missile',
   u'damage',
   u'headbutt',
   u'metal',
   u'noggin',
   u'daze',
   u'him?<br',
   u'beam',
   u'force',
   u'laser',
   u'building',
   u'ground',
   u'clothe'],
  [u'trench', u'coat', u'gravity', u'signature', u'card', u'sort', u'acrobat'],
  [u'scene', u'minute', u'rooftop'],
  [u'consciousness',
   u'block',
   u'building',
   u'middle',
   u'match',
   u'mystery',
   u'film',
   u'weakness',
   u'character',
   u'flash'],
  [u'idea',
   u'movie',
   u'film',
   u'fact',
   u'book',
   u'source',
   u'material',
   u'origin',
   u'story',
   u'screen'],
  [u'sugar', u'coat', u'past', u'reader', u'junkies'],
  [u'story', u'time', u'weapon'],
  [u'story.<br', u'fox', u'film']],
 [[u'service',
   u'comedy',
   u'brother',
   u'host',
   u'sight',
   u'gag',
   u'talk',
   u'scene',
   u'grenade',
   u'officer',
   u'politician',
   u'anger',
   u'foot',
   u'reaction',
   u'flinches.<br',
   u'midst',
   u'awfulness',
   u'moment',
   u'brightness',
   u'engage',
   u'bout',
   u'talk',
   u'argufying',
   u'timing',
   u'comedy',
   u'pair.<br',
   u'turkey']],
 [[u'song', u'movie', u'script', u'grating', u'slapstick', u'blush'],
  [u'hour', u'story', u'plot', u'character'],
  [u'guy', u'sailor', u'racist', u'caricature', u'day'],
  [u'shame', u'movie', u'guy'],
  [u'towel', u'one.<br', u'charm', u'movie', u'half', u'hour'],
  [u'story', u'situation']],
 [[u'ape', u'comedy', u'team'],
  [u'laugh', u'picture'],
  [u'script', u'chemistry', u'type', u'coolness'],
  [u'sure'],
  [u'pillar',
   u'sky',
   u'bullfighter',
   u'minute',
   u'thing',
   u'kid',
   u'audience',
   u'stuff',
   u'screen',
   u'short'],
  [u'year', u'cable', u'night'],
  [u'thing', u'thing'],
  [u'soldier', u'way', u'character', u'defective', u'comparison'],
  [u'host', u'hand', u'movie'],
  [u'waste', u'film']],
 [[u'sprawling', u'novel', u'life', u'snobbery', u'look'],
  [u'film', u'miscasting', u'everyman'],
  [u'life', u'character', u'sophistication', u'eye', u'nuance', u'experience'],
  [u'film', u'blah', u'subject', u'dehumanization', u'favor', u'status'],
  [u'satire', u'viewer', u'point']],
 [[u'novel',
   u'wall',
   u'streeter',
   u'boy',
   u'reporter',
   u'spiral',
   u'character',
   u'empathy',
   u'movie',
   u'comedy',
   u'satire',
   u'lot',
   u'laugh',
   u'breast',
   u'fun',
   u'thing',
   u'change',
   u'size',
   u'film',
   u'mind',
   u'thing',
   u'lack',
   u'script',
   u'humor',
   u'scale']],
 [[u'novel', u'film', u'film', u'flop'],
  [u'comparison', u'film'],
  [u'animals.<br', u'novel', u'satire', u'cross', u'tragedy'],
  [u'element', u'basis', u'film', u'version', u'author', u'thrust'],
  [u'suit', u'author', u'fool'],
  [u'precedent', u'spectre', u'hat', u'tail'],
  [u'clown', u'hack', u'celebrity', u'author', u'grist'],
  [u'<br',
   u'wonder',
   u'production',
   u'skill',
   u'direction',
   u'film',
   u'start'],
  [u'satire',
   u'film',
   u'polemic',
   u'observation',
   u'form',
   u'behavior',
   u'attack',
   u'person',
   u'straw',
   u'man',
   u'wrath',
   u'writer'],
  [u'effort',
   u'story',
   u'beginning',
   u'writer',
   u'influence',
   u'interference.<br',
   u'fault',
   u'casting'],
  [u'incompetent',
   u'fail',
   u'talent',
   u'role',
   u'caricatures.<br',
   u'material',
   u'film',
   u'satire']],
 [[u'movie', u'thought', u'picture', u'colonial', u'story'],
  [u'story'],
  [u'vignette', u'point', u'light', u'picture'],
  [u'movie'],
  [u'scene', u'airport', u'shower', u'music', u'sheer', u'poetry'],
  [u'movie', u'tear']],
 [[u'point',
   u'novel',
   u'point',
   u'story',
   u'thing',
   u'place',
   u'sense',
   u'expediency'],
  [u'goal', u'survival', u'kind', u'life', u'style'],
  [u'relationship', u'ring', u'daughter'],
  [u'way',
   u'publicity',
   u'power',
   u'money',
   u'self',
   u'aggrandizement.<br',
   u'character',
   u'segment',
   u'head'],
  [u'neighborhood',
   u'improvement',
   u'committee',
   u'organization',
   u'qualification',
   u'order'],
  [u'studies'],
  [u'weakness'],
  [u'protester', u'justice'],
  [u'movie', u'frame', u'story'],
  [u'event'],
  [u'anthropologist',
   u'details.<br',
   u'mistress',
   u'couple',
   u'kid',
   u'getaway'],
  [u'<br',
   u'scene',
   u'movie',
   u'audience',
   u'time',
   u'attempt',
   u'message',
   u'message'],
  [u'<br',
   u'kid',
   u'novel',
   u'release',
   u'jail',
   u'condo',
   u'shotgun',
   u'start',
   u'shooting',
   u'ceiling',
   u'movee'],
  [u'scene',
   u'ceiling',
   u'plaster',
   u'party',
   u'guest',
   u'scurry',
   u'shrieking'],
  [u'sensibility', u'work'],
  [u'scene', u'wake', u'audience'],
  [u'scene',
   u'verisimilitude.<br',
   u'movie',
   u'thrust',
   u'lot',
   u'sin',
   u'redemption',
   u'entertaining',
   u'story',
   u'nihilism'],
  [u'judge', u'bench', u'speech'],
  [u'reporter', u'lamb'],
  [u'law', u'grin'],
  [u'<br', u'movie', u'point', u'audience', u'subtleties.<br', u'direction'],
  [u'film', u'respect'],
  [u'photography', u'shot', u'gargoyle', u'landing'],
  [u'script', u'botched.<br', u'half', u'movie', u'conception', u'execution'],
  [u'novel'],
  [u'focus',
   u'half',
   u'watching.<br',
   u'redneck',
   u'right-wingism',
   u'lot',
   u'person',
   u'cojone',
   u'percept'],
  [u'writer', u'producer', u'courage', u'chance', u'study']],
 [[u'book',
   u'adaptation',
   u'film',
   u'storyline',
   u'description',
   u'character'],
  [u'storyline', u'scene', u'order'],
  [u'thing', u'book', u'book', u'film', u'character']],
 [[u'critic',
   u'stinker',
   u'time',
   u'stinker',
   u'director',
   u'career).<br',
   u'boy',
   u'life',
   u'piece',
   u'lover'],
  [u'story', u'guy', u'reporter', u'summary', u'<br', u'movie'],
  [u'character',
   u'displeasure',
   u'meeting',
   u'life.<br',
   u'fan',
   u'novel',
   u'liking',
   u'novel',
   u'film',
   u'travesty.<br',
   u'actor',
   u'movie',
   u'semblance',
   u'quality'],
  [u'waste.<br', u'problem', u'guy', u'role'],
  [u'there.<br',
   u'film',
   u'dignity',
   u'lecture',
   u'decency',
   u'climax.<br',
   u'movie',
   u'farce.<br',
   u'assemblage',
   u'talent',
   u'person',
   u'movie',
   u'source',
   u'material']],
 [[u'movie', u'story', u'title', u'book'],
  [u'change', u'story', u'flow', u'screen'],
  [u'change', u'product'],
  [u'scene', u'movie'],
  [u'actor'],
  [u'director',
   u'screen',
   u'writer',
   u'comedy',
   u'sermon.<br',
   u'movie',
   u'book']],
 [[u'book', u'possibility', u'film'],
  [u'decision', u'movie'],
  [u'actor', u'characteristic', u'role'],
  [u'choice.<br',
   u'eye',
   u'candy',
   u'reason',
   u'depth',
   u'ambivalence',
   u'off.<br',
   u'movie',
   u'example',
   u'decision',
   u'movie',
   u'production',
   u'file']],
 [[u'film', u'board'],
  [u'stand', u'laugh', u'stage'],
  [u'film', u'attempt', u'laugh', u'result', u'thud'],
  [u'desperation',
   u'film',
   u'display',
   u'pity',
   u'involved.<br',
   u'film',
   u'status'],
  [u'sight', u'tv', u'tabloid', u'journalist'],
  [u'scene',
   u'film',
   u'moment',
   u'judge',
   u'lecture',
   u'morality',
   u'mama',
   u'taught',
   u'ya'],
  [u'pomposity', u'moment', u'point'],
  [u'<br', u'effort'],
  [u'band', u'actor', u'character', u'cardboard', u'caricature'],
  [u'film', u'flourish', u'director'],
  [u'film', u'commentary', u'moral', u'ethic', u'level', u'cartoon'],
  [u'bonfire', u'desperation']],
 [[u'cinema', u'friend', u'movie'],
  [u'actor', u'character', u'favourite'],
  [u'movie'],
  [u'sort'],
  [u'minute'],
  [u'rate', u'character', u'development', u'movie']],
 [[u'writing', u'year'],
  [u'actor'],
  [u'movie', u'movie', u'list'],
  [u'movie', u'con-man', u'dialogue', u'character', u'guy'],
  [u'walk']],
 [[u'movie'],
  [u'sorry', u'actress', u'movie', u'performance'],
  [u'dad', u'fame', u'line.<br', u'plot', u'place', u'humour'],
  [u'movie',
   u'house',
   u'family',
   u'laugh',
   u'expression',
   u'movie',
   u'alternative',
   u'collision',
   u'train',
   u'train']],
 [[u'thing', u'movie', u'conceit', u'saint', u'family', u'live'],
  [u'let', u'order', u'saint', u'saint', u'saint'],
  [u'millennium'],
  [u'toy', u'number', u'child', u'family', u'farm'],
  [u'episode', u'morph', u'spleen', u'loser', u'nod', u'empathy'],
  [u'storyline', u'idiocy!<br', u'operation', u'mega-mall', u'answer'],
  [u'egg'],
  [u'man', u'skin-tight', u'mini-dress', u'boot'],
  [u'child', u'embodiment', u'evil'],
  [u'boy', u'lash', u'nimrod', u'pudding']],
 [[u'film', u'mind', u'life', u'colonial', u'generation'], [u'film']],
 [[u'sibling', u'life', u'struggle', u'shadow', u'bitterness', u'family'],
  [u'brother'],
  [u'premise',
   u'here.<br',
   u'loser',
   u'lot',
   u'energy',
   u'person',
   u'thing',
   u'brother',
   u'praise',
   u'limelight-hogging',
   u'guy'],
  [u'favour', u'brother', u'run'],
  [u'reality',
   u'movie',
   u'moment',
   u'music',
   u'video',
   u'moment',
   u'auditor',
   u'operation',
   u'baddy',
   u'time',
   u'outfit',
   u'elf',
   u'highlight',
   u'movie',
   u'swimming',
   u'bitterness',
   u'fare',
   u'half',
   u'fun',
   u'poke',
   u'thing',
   u'commercialism',
   u'time.<br',
   u'ride',
   u'movie',
   u'style'],
  [u'stinker'],
  [u'script',
   u'exception',
   u'scene',
   u'support',
   u'group',
   u'problem.<br',
   u'direction',
   u'card',
   u'year',
   u'ingredient',
   u'mix',
   u'care',
   u'pudding'],
  [u'lump', u'sugar'],
  [u'comedy.<br', u'clause', u'clause', u'clause']],
 [[u'formula', u'comedy'],
  [u'laugh',
   u'talent',
   u'holiday',
   u'guy',
   u'case',
   u'holiday',
   u'blue',
   u'ground',
   u'bunch',
   u'comedy',
   u'movie',
   u'day',
   u'year',
   u'season'],
  [u'plot',
   u'home',
   u'clause',
   u'franchise',
   u'humor',
   u'skirt',
   u'premise',
   u'minute'],
  [u'sure', u'brother'],
  [u'cast', u'comedy', u'snow'],
  [u'snob', u'brother', u'brother'],
  [u'efficiency', u'expert', u'eye'],
  [u'touch', u'quality', u'way', u'with.<br', u'humor', u'brother', u'joke'],
  [u'movie', u'sentimentality', u'lesson'],
  [u'shopping', u'money']],
 [[u'year',
   u'clause',
   u'bit',
   u'moment',
   u'starrer',
   u'trip',
   u'theater.<br',
   u'holiday',
   u'movie'],
  [u'concern',
   u'wedding',
   u'crasher',
   u'helm',
   u'moment',
   u'line',
   u'vehicle',
   u'film'],
  [u'cast',
   u'disappointed.<br',
   u'brother',
   u'time',
   u'parent',
   u'parent',
   u'favoritism',
   u'sibling'],
  [u'time',
   u'family',
   u'saint',
   u'repo',
   u'man',
   u'time',
   u'girlfriend',
   u'birthday.<br',
   u'run',
   u'trouble',
   u'law',
   u'brother',
   u'decade',
   u'jail'],
  [u'cynicism',
   u'clash',
   u'elf',
   u'nature',
   u'efficiency',
   u'expert',
   u'spacey',
   u'toy',
   u'factory',
   u'operation',
   u'operation',
   u'thing',
   u'fail.<br',
   u'film',
   u'moment',
   u'length',
   u'duration'],
  [u'pile',
   u'film',
   u'attempt',
   u'sentimentality',
   u'year',
   u'fruitcake.<br',
   u'charm',
   u'table',
   u'script',
   u'thing'],
  [u'suit', u'charm', u'character', u'fiddle'],
  [u'game', u'face', u'turn', u'vapid.<br', u'film'],
  [u'sure', u'way', u'season', u'cinema', u'way']],
 [[u'movie', u'work'],
  [u'city', u'parking', u'time', u'newspaper', u'listing'],
  [u'plot', u'preview', u'plot', u'turn', u'point'],
  [u'ride', u'bladck', u'kid', u'character'],
  [u'movie', u'kid', u'adult', u'chore']],
 [[u'thanksgiving',
   u'break',
   u'family',
   u'everybody',
   u'movie',
   u'clause',
   u'majority'],
  [u'<br', u'movie', u'plot', u'hole'],
  [u'explanation', u'event'],
  [u'explanation'],
  [u'<br', u'movie', u'character', u'sympathy', u'feeling', u'action'],
  [u'example', u'elf', u'girl', u'elf', u'village'],
  [u'<br', u'family', u'film'],
  [u'rating'],
  [u'family', u'film', u'article', u'conversation'],
  [u'<br', u'movie', u'role', u'movie'],
  [u'moment', u'character', u'movie'],
  [u'frat', u'boy'],
  [u'movies)<br',
   u'movie',
   u'star',
   u'somebody',
   u'effort',
   u'film',
   u'flick'],
  [u'<br', u'opinion', u'flick', u'day', u'rental']],
 [[u'film'],
  [u'writer', u'idea', u'year', u'brother'],
  [u'scene',
   u'place',
   u'kind',
   u'notion',
   u'scene',
   u'drug',
   u'sense',
   u'comedy',
   u'director',
   u'jerker',
   u'end',
   u'point',
   u'following.<br',
   u'disappointment']],
 [[u'eve', u'kid', u'showing'],
  [u'schmaltzy', u'movie'],
  [u'thing', u'variety', u'thing'],
  [u'season', u'ka-ching', u'ka-ching', u'guise'],
  [u'film', u'stature'],
  [u'holiday', u'movie', u'humor', u'adult', u'charm', u'kid'],
  [u'wife', u'lot', u'humor'],
  [u'lot'],
  [u'flick', u'tradition'],
  [u'wife', u'daughter', u'holiday', u'schmaltz', u'dash', u'spice']],
 [[u'film',
   u'performance',
   u'frat',
   u'boy',
   u'self',
   u'time',
   u'child',
   u'movie',
   u'wit',
   u'charm',
   u'film'],
  [u'film', u'wall', u'performance'],
  [u'minute',
   u'film',
   u'touch',
   u'scourge',
   u'film',
   u'minute',
   u'film',
   u'point'],
  [u'actor',
   u'mess',
   u'life',
   u'perspective',
   u'paper',
   u'role',
   u'way',
   u'actor',
   u'film'],
  [u'depth',
   u'warmth',
   u'character',
   u'level',
   u'behavior',
   u'sibling',
   u'infighting'],
  [u'face', u'fun', u'role', u'film'],
  [u'sense', u'fun', u'spirit', u'role', u'character', u'face', u'film'],
  [u'film', u'face', u'agent', u'end', u'movie'],
  [u'direction',
   u'feeling',
   u'holiday',
   u'movie',
   u'feeling',
   u'widow',
   u'display',
   u'torn',
   u'down.<br',
   u'actor',
   u'best',
   u'bring',
   u'table',
   u'script',
   u'direction',
   u'feeling',
   u'subject',
   u'hand',
   u'movie',
   u'thing',
   u'actor',
   u'performance',
   u'film']],
 [[u'film', u'movie', u'camp', u'song', u'end'],
  [u'story',
   u'run',
   u'sheep',
   u'family',
   u'family',
   u'holiday',
   u'kind',
   u'thing',
   u'setting'],
  [u'course',
   u'family',
   u'screw',
   u'home',
   u'series',
   u'set',
   u'girlfriend',
   u'cameo',
   u'role',
   u'home',
   u'parent',
   u'brother',
   u'jinks',
   u'bit',
   u'sibling',
   u'rivalry',
   u'bit'],
  [u'film', u'hill'],
  [u'loser',
   u'time',
   u'role',
   u'note',
   u'assistant',
   u'character',
   u'joke',
   u'person',
   u'film'],
  [u'actor',
   u'film',
   u'dignity',
   u'sincerity',
   u'role',
   u'movie',
   u'lot',
   u'role',
   u'actor',
   u'shame',
   u'lot',
   u'script',
   u'them.<br',
   u'nutshell',
   u'disappointment']],
 [[u'role', u'climber'],
  [u'acting'],
  [u'story',
   u'character',
   u'story',
   u'audience.<br',
   u'scenery',
   u'cinematography',
   u'story',
   u'event',
   u'world',
   u'story'],
  [u'fan',
   u'actor',
   u'generation',
   u'flick',
   u'end',
   u'movie',
   u'direction',
   u'scriptwriting',
   u'production',
   u'editing'],
  [u'shame', u'story'],
  [u'mind']],
 [[u'geography', u'thousand', u'mile', u'scope', u'indochine'],
  [u'movie',
   u'underpinning',
   u'indochine',
   u'relationship',
   u'colonial',
   u'subjects.<br',
   u'dignity',
   u'struggle',
   u'dignity',
   u'peer',
   u'boss'],
  [u'relationship'],
  [u'film',
   u'force',
   u'link',
   u'movie',
   u'character',
   u'remembrance',
   u'colonialism'],
  [u'story', u'ty'],
  [u'story',
   u'way',
   u'remembrance',
   u'tension',
   u'relationships.<br',
   u'black',
   u'ride',
   u'beginning',
   u'end',
   u'movie',
   u'confusion',
   u'world'],
  [u'home']],
 [[u'mountaineer'],
  [u'star', u'idea', u'accent', u'hour'],
  [u'series', u'event', u'space', u'plot', u'inch'],
  [u'viewer',
   u'doesn\xb4t',
   u'fall',
   u'hero',
   u'smoking',
   u'cigarette',
   u'altitude',
   u'foot'],
  [u'target',
   u'audience',
   u'subtitle',
   u'character',
   u'peasant',
   u'closed-off',
   u'city',
   u'accent'],
  [u'course',
   u'aspect',
   u'story',
   u'nazi',
   u'fiddling',
   u'film',
   u'projector',
   u'radio',
   u'car',
   u'device',
   u'freedom',
   u'west'],
  [u'return', u'hero', u'proteg\xe9', u'kind', u'fashion'],
  [u'lot',
   u'scene',
   u'hero',
   u'mark',
   u'respect',
   u'protocol',
   u'rest',
   u'society',
   u'accord',
   u'hero',
   u'reverence',
   u'person',
   u'leader'],
  [u'word', u'audience', u'guy', u'sort', u'way', u'transformation'],
  [u'statistic', u'end', u'film', u'charge', u'movie', u'sort'],
  [u'movie']],
 [[u'told:<br',
   u'person',
   u'tongue',
   u'mouth',
   u'impression',
   u'way',
   u'book',
   u'harrer',
   u'tongue',
   u'sign',
   u'humbleness',
   u'loyalty',
   u'european'],
  [u'book', u'glass', u'time(sorry', u'reason', u'book'],
  [u'tse', u'tung', u'mandala', u'buddha'],
  [u'clothe', u'designer', u'suit'],
  [u'event', u'story', u'time', u'love', u'female'],
  [u'year', u'book', u'harrer', u'person'],
  [u'adaption', u'book'],
  [u'bet', u'harrer', u'star', u'cinematography']],
 [[u'admirer<br'],
  [u'movie', u'fictionalization', u'truth'],
  [u'event', u'purpose', u'documentary'],
  [u'script', u'change', u'impact', u'reaction,<br', u'change', u'character'],
  [u'relationship'],
  [u'<br',
   u'rivalry',
   u'woman',
   u'culture',
   u'music',
   u'box',
   u'gift',
   u's<br',
   u'heart',
   u'movie',
   u'except<br',
   u'photography'],
  [u'story', u'relationship', u'people,<br', u'world', u'order', u'star']],
 [[u'dust', u'courtesy', u'device'],
  [u'slice', u'place', u'movie', u'villain', u'life', u'year'],
  [u'boy',
   u'object',
   u'yearning',
   u'cab',
   u'driver',
   u'film',
   u'role',
   u'future'],
  [u'whisper', u'ear', u'device']],
 [[u'fiend', u'script'],
  [u'movie',
   u'end',
   u'barf',
   u'god',
   u'mother',
   u'movie',
   u'form',
   u'kid',
   u'tv']],
 [[u'drivel', u'girl'],
  [u'writer', u'rule', u'movie'],
  [u'character'],
  [u'b*tch', u'friend', u'beginning', u'person', u'affair'],
  [u'sort', u'deformity'],
  [u'tip', u'future', u'filmmaker', u'year', u'old', u'entertaining'],
  [u'moment', u'movie'],
  [u'crap'],
  [u'club', u'person'],
  [u'clue', u'job', u'notice'],
  [u'character', u'job', u'sense', u'child'],
  [u'body-switching', u'movie', u'hand']],
 [[u'movie'],
  [u'writer', u'plots.<br', u'girl', u'wish', u'birthday', u'adult'],
  [u'acting'],
  [u'plot'],
  [u'job', u'friend', u'work'],
  [u'friend', u'job'],
  [u'course',
   u'end',
   u'idea.<br',
   u'dancing',
   u'scene',
   u'movie',
   u'time',
   u'hate',
   u'movie']],
 [[u'movie',
   u'consideration',
   u'syndrome',
   u'example',
   u'way',
   u'movie',
   u'movie',
   u'<br',
   u'vote'],
  [u'fan', u'comedy', u'joke', u'fan']],
 [[u'actor'],
  [u'<br', u'movie', u'comparison'],
  [u'<br', u'singing', u'performance', u'stage', u'play', u'rap']],
 [[u'actor',
   u'lot',
   u'passion',
   u'number',
   u'number',
   u'film',
   u'music',
   u'video'],
  [u'effort', u'number', u'studio', u'life', u'song'],
  [u'stage', u'performance', u'woman'],
  [u'movie',
   u'character',
   u'hardship',
   u'weight',
   u'refusal',
   u'team',
   u'land',
   u'trouble',
   u'end',
   u'film'],
  [u'emotion', u'writer', u'fault', u'flesh', u'character'],
  [u'character', u'arc', u'job'],
  [u'actor', u'roll', u'character'],
  [u'placement',
   u'number',
   u'time',
   u'movie',
   u'fun',
   u'musical',
   u'number',
   u'girl',
   u'skit'],
  [u'waste', u'time', u'film', u'year']],
 [[u'year',
   u'research',
   u'death',
   u'world',
   u'series',
   u'woman',
   u'birth',
   u'septuplet'],
  [u'year',
   u'release',
   u'film',
   u'time',
   u'tale',
   u'ship',
   u'dream',
   u'boy',
   u'girl',
   u'love',
   u'class',
   u'height',
   u'commitment',
   u'ship',
   u'disaster'],
  [u'anybody',
   u'movie',
   u'life',
   u'million',
   u'fan',
   u'girl',
   u'year',
   u'time',
   u'course',
   u'movie',
   u'time'],
  [u'film', u'love'],
  [u'time',
   u'course',
   u'film',
   u'couple',
   u'year',
   u'film',
   u'price',
   u'movie'],
  [u'movie', u'time'],
  [u'nose'],
  [u'film'],
  [u'movie',
   u'movie',
   u'time',
   u'idea',
   u'movie',
   u'romance',
   u'humor',
   u'disaster',
   u'emotion',
   u'maiden',
   u'voyage.<br',
   u'film',
   u'team',
   u'wreck',
   u'necklace',
   u'set',
   u'diamond'],
  [u'drawing', u'woman', u'day'],
  [u'drawing', u'contact', u'woman', u'drawing'],
  [u'granddaughter', u'team', u'salvage', u'ship'],
  [u'board',
   u'ship',
   u'mother',
   u'importance',
   u'engagement',
   u'marriage',
   u'eradication',
   u'debt',
   u'appearance',
   u'mother'],
  [u'engagement', u'pressure', u'mother', u'marriage', u'attempt', u'suicide'],
  [u'friendship',
   u'thank',
   u'life',
   u'share',
   u'story',
   u'adventure',
   u'bond',
   u'dinner',
   u'gathering',
   u'dance',
   u'music',
   u'beer'],
  [u'woman',
   u'daughter',
   u'lady',
   u'tea',
   u'mother',
   u'sketch',
   u'engagement',
   u'present'],
  [u'moment',
   u'fun',
   u'time',
   u'deck',
   u'ship.<br',
   u'witness',
   u'ship',
   u'collision',
   u'iceberg'],
  [u'drawing', u'note', u'frame', u'plant', u'pocket'],
  [u'enemy', u'board', u'lifeboat'],
  [u'movie',
   u'hater',
   u'reason',
   u'movie',
   u'ton',
   u'award',
   u'love',
   u'movie'],
  [u'acting', u'effect', u'story'],
  [u'love',
   u'movie',
   u'lot',
   u'hype',
   u'baby',
   u'face',
   u'ability',
   u'sight',
   u'film'],
  [u'place', u'heart', u'film', u'time', u'theater'],
  [u'movie', u'classic', u'day.<br']],
 [[u'film', u'person'],
  [u'scene', u'glimpse', u'colonial', u'rule', u'film'],
  [u'similarity', u'fluff'],
  [u'person', u'native', u'person'],
  [u'servant', u'white', u'regard', u'person'],
  [u'<br',
   u'illustration',
   u'thoughtlessness',
   u'relationship',
   u'mother',
   u'servant'],
  [u'time', u'lot', u'time', u'feeling', u'woman', u'existence', u'feeling'],
  [u'example', u'thoughtlessness', u'lace', u'dress'],
  [u'relationship',
   u'fact',
   u'person',
   u'abuse',
   u'garbage.<br',
   u'relationship',
   u'girl',
   u'beginning',
   u'end',
   u'film'],
  [u'time',
   u'plaything',
   u'pet',
   u'girl',
   u'children.<br',
   u'character',
   u'time',
   u'black',
   u'character',
   u'confusing'],
  [u'moment', u'work', u'eating'],
  [u'guess', u'jerk', u'agitator', u'black'],
  [u'fact',
   u'scene',
   u'character',
   u'wasted.<br',
   u'insight',
   u'movie',
   u'snippet',
   u'world',
   u'perspective',
   u'child',
   u'period',
   u'life'],
  [u'film',
   u'headset',
   u'film',
   u'time',
   u'mention',
   u'anti-colonialism',
   u'violence',
   u'independence',
   u'nation'],
  [u'confusion',
   u'maker',
   u'film',
   u'film',
   u'lady',
   u'life',
   u'country',
   u'change.<br',
   u'context',
   u'confusion',
   u'time',
   u'period',
   u'prologue',
   u'epilogue',
   u'adult',
   u'country',
   u'idea'],
  [u'surprise', u'man', u'ride'],
  [u'sort', u'resolution', u'message', u'colonialism']],
 [[u'bomb'],
  [u'music'],
  [u'song', u'movie', u'hit', u'movie'],
  [u'number', u'restroom', u'corn'],
  [u'song'],
  [u'pace', u'character', u'development'],
  [u'lead', u'singing', u'song'],
  [u'movie', u'enthusiast'],
  [u'doubt', u'movie', u'life'],
  [u'waist', u'time', u'money'],
  [u'movie', u'screen', u'character'],
  [u'video', u'movie', u'dog']],
 [[u'buzz'],
  [u'film', u'movie', u'classic'],
  [u'performance', u'tv', u'movie', u'style', u'flair'],
  [u'bunch', u'amateur', u'hour', u'raveup', u'performance', u'montage'],
  [u'song', u'performance', u'film'],
  [u'portion', u'film', u'film', u'point', u'view', u'momentum'],
  [u'remaining', u'hour', u'minute', u'formless', u'rambling', u'mess'],
  [u'tunes.<br', u'tune', u'piece'],
  [u'number', u'half', u'person', u'singing'],
  [u'way', u'number'],
  [u'note', u'dialog', u'stuff', u'stage', u'failure'],
  [u'songs."<br', u'film', u'performance', u'tv', u'movie']],
 [[u'year', u'jewel', u'crown', u'stage', u'musical'],
  [u'hand', u'on-screen'],
  [u'screen', u'version', u'stage', u'weakness'],
  [u'score', u'point', u'production', u'film', u'factor'],
  [u'tune', u'title', u'song', u'song', u'set', u'piece', u'character'],
  [u'film', u'story', u'character', u'lacking', u'resonance'],
  [u'moment',
   u'svengali-like',
   u'manager',
   u'act',
   u'seat',
   u'portion',
   u'film',
   u'story',
   u'villain',
   u'business',
   u'stand-point',
   u'majority',
   u'film'],
  [u'song', u'character', u'surface', u'glitz'],
  [u'member', u'trio', u'film'],
  [u'singer', u'role', u'impact'],
  [u'casting'],
  [u'film',
   u'selling',
   u'point',
   u'contestant',
   u'winner',
   u'role',
   u'singer',
   u'group',
   u'closing',
   u'act',
   u'return'],
  [u'problem', u'movie'],
  [u'film', u'character', u'kind', u'devotion'],
  [u'start', u'diva', u'group'],
  [u'group',
   u'unprofessionalism',
   u'attitude',
   u'charge',
   u'stage',
   u'slack',
   u'voice'],
  [u'film', u'edge', u'charge'],
  [u'story',
   u'sympathy',
   u'mother',
   u'daughter',
   u'implication',
   u'talent',
   u'card',
   u'motherhood',
   u'behavior'],
  [u'effort',
   u'film',
   u'mothering',
   u'scene',
   u'daughter',
   u'unemployment',
   u'office',
   u'girl',
   u'father',
   u'employment',
   u'singing'],
  [u'hand', u'actress', u'gap', u'technique', u'charisma'],
  [u'moment', u'moment'],
  [u'signature', u'moment', u'number', u'department'],
  [u'rage', u'desperation', u'predicament', u'cabaret', u'belting', u'number'],
  [u'highlight'],
  [u'portion', u'film', u'melange', u'event', u'position', u'strut', u'lord'],
  [u'offense',
   u'film',
   u'course',
   u'record',
   u'producer',
   u'film',
   u'implication',
   u'usher',
   u'disco',
   u'era',
   u'film',
   u'depth',
   u'puddle'],
  [u'end', u'result', u'rendition', u'stage', u'emotion', u'energy']],
 [[u'movie',
   u'year',
   u'storyline',
   u'script',
   u'making-it-in-the-music-industry',
   u'films.<br',
   u'here.<br',
   u'make-up',
   u'costume',
   u'choreography',
   u'money',
   u'draw.<br',
   u'throwback',
   u'style',
   u'group',
   u'voice',
   u'empire).<br',
   u'involvement',
   u'garbage']],
 [[u'over-hype'],
  [u'excitement', u'viewer'],
  [u'route',
   u'form',
   u'music',
   u'montage',
   u'acting',
   u'choice',
   u'countdown',
   u'shot']],
 [[u'sense', u'person', u'liking', u'film', u'song', u'story', u'content'],
  [u'film']],
 [[u'reviews', u'month', u'award', u'winning', u'performance'],
  [u'power', u'movie', u'star'],
  [u'product'],
  [u'film',
   u'publicity',
   u'hype',
   u'grace',
   u'performance',
   u'rescue',
   u'movie',
   u'lull',
   u'performance',
   u'attention',
   u'time',
   u'screen'],
  [u'man', u'group', u'life'],
  [u'reviewer', u'movie', u'actor', u'accolade', u'performance'],
  [u'presence', u'voice', u'talent'],
  [u'skill',
   u'film',
   u'performance',
   u'fashion',
   u'photo',
   u'shoot',
   u'taping',
   u'way',
   u'movie'],
  [u'performance',
   u'character',
   u'point',
   u'film.<br',
   u'movie',
   u'minute',
   u'song',
   u'solo']],
 [[u'performance'],
  [u'minute', u'music', u'place', u'performance'],
  [u'thing',
   u'minute',
   u'dialog',
   u'idea',
   u'thing',
   u'number',
   u'jazz',
   u'club',
   u'drummer',
   u'guitar',
   u'piece',
   u'string',
   u'section'],
  [u'inconsistency', u'music', u'composer', u'inability', u'music', u'style'],
  [u'couple', u'piece', u'sound', u'rest', u'film', u'music'],
  [u'silliness', u'snippet', u'group', u'family', u'imitation', u'morphing'],
  [u'film', u'time', u'hour', u'film']],
 [[u'quarter', u'movie'],
  [u'music', u'scene'],
  [u'character', u'drug', u'overdose', u'emotion', u'character'],
  [u'character',
   u'background',
   u'singing',
   u'childhood',
   u'personality',
   u'conflict',
   u'viewer',
   u'care',
   u'lack',
   u'character',
   u'development'],
  [u'movie', u'movie', u'movie', u'opinion'],
  [u'movie',
   u'suit',
   u'story',
   u'hour',
   u'entertaining',
   u'fun',
   u'singing',
   u'performance']],
 [[u'acting', u'story', u'childhood', u'pain', u'revenge'],
  [u'hollywood', u'film'],
  [u'comment',
   u'courtroom',
   u'scene',
   u'character',
   u'plan',
   u'friend',
   u'murder'],
  [u'<br', u'spoilers!!<br', u'alibi', u'priest'],
  [u'motif', u'murderer', u'end', u'story'],
  [u'movie', u'potential']],
 [[u'theme',
   u'identity',
   u'relation',
   u'colonialism',
   u'party',
   u'tension',
   u'memory',
   u'protaganiste',
   u'childhood',
   u'exoticism',
   u'relationship',
   u'parent',
   u'houseboy'],
  [u'mother', u'relationship', u'man'],
  [u'hope', u'hook', u'subtitle'],
  [u'brave']],
 [[u'disappointment',
   u'prequel',
   u'story',
   u'plot',
   u'end',
   u'result',
   u'collection',
   u'set',
   u'piece'],
  [u'continuity',
   u'error',
   u'film',
   u'emergence',
   u'moment',
   u'cinema',
   u'goof',
   u'year'],
  [u'dialogue',
   u'film',
   u'style',
   u'cult',
   u'feeling',
   u'story',
   u'dialogue',
   u'charm'],
  [u'prequel', u'attempt', u'money', u'lack', u'love', u'spade']],
 [[u'kind',
   u'storytelling',
   u'reason',
   u'film',
   u'star',
   u'line',
   u'word',
   u'war',
   u'title'],
  [u'insult', u'filmmaker', u'film', u'story', u'writing', u'credit'],
  [u'make-up', u'eye'],
  [u'blow'],
  [u'thing', u'series', u'intelligence'],
  [u'thing', u'trilogy', u'stupidity'],
  [u'body', u'bout', u'cockiness.<br', u'legend', u'point'],
  [u'scene', u'double'],
  [u'fighter',
   u'double',
   u'fight',
   u'scene',
   u'battle',
   u'middle',
   u'parry',
   u'riposte',
   u'saber',
   u'time',
   u'inch'],
  [u'fight', u'head', u'disbelief', u'disgust.<br', u'writing'],
  [u'dialogue', u'quality'],
  [u'actor', u'line'],
  [u'thing', u'film'],
  [u'effect',
   u'plot',
   u'hole',
   u'centre',
   u'universe',
   u'insight',
   u'character'],
  [u'mistake', u'film'],
  [u'picture', u'limb'],
  [u'film'],
  [u'fan', u'fine', u'arm', u'scream'],
  [u'b-movie',
   u'budget',
   u'ultra-loyalist',
   u'fan',
   u'base',
   u'movie',
   u'standard',
   u'pit']],
 [[u'revenge',
   u'action',
   u'sequence',
   u'hour',
   u'minute',
   u'dialogue',
   u'machination',
   u'rest',
   u'series'],
  [u'thing', u'proceedings', u'build-up', u'birth'],
  [u'movie', u'heaven', u'sequel'],
  [u'environment', u'time'],
  [u'fight'],
  [u'mess'],
  [u'hold', u'prequel'],
  [u'ton', u'money', u'thank', u'god', u'franchise'],
  [u'group', u'kid'],
  [u'thing', u'middle'],
  [u'birth']],
 [[u'preface', u'post', u'fan', u'book', u'game', u'underwear', u'cereal'],
  [u'fan', u'films.<br', u'struggle', u'person', u'movie', u'praise'],
  [u'movie', u'predecessor', u'movie'],
  [u'shortcoming',
   u'script',
   u'dialogue',
   u'scene',
   u'badass',
   u'cgi',
   u'scene',
   u'touch',
   u'plot',
   u'hole'],
  [u'dilemma', u'switch'],
  [u'movie', u'minute', u'way'],
  [u'screen', u'effect', u'gap', u'one-liner', u'great']],
 [[u'9-year-old', u'brat', u'19-year-old', u'year'],
  [u'jedi',
   u'warrior',
   u'hero',
   u'couple',
   u'dream',
   u'child',
   u'friend',
   u'framework',
   u'existence',
   u'man',
   u'wife'],
  [u'story'],
  [u'character',
   u'sense',
   u'etc.).<br',
   u'kind',
   u'anchor',
   u'series',
   u'climax',
   u'hack',
   u'leg',
   u'lava'],
  [u'think', u'character'],
  [u'chance', u'living', u'story', u'character', u'motivation'],
  [u'story', u'year', u'old.<br', u'cool']],
 [[u'wood', u'chopper', u'dreck'],
  [u'destruction', u'couple', u'film'],
  [u'story', u'film', u'crap', u'toy', u'parade'],
  [u'rock'],
  [u'yoda', u'skill'],
  [u'advice', u'anybody'],
  [u'mess', u'fall', u'b***h'],
  [u'brain', u'year']],
 [[u'film',
   u'prequel',
   u'trilogy',
   u'tax',
   u'film-maker',
   u'film-maker.<br',
   u'fall',
   u'man',
   u'darkness',
   u'actor',
   u'minute',
   u'pocket',
   u'sabre',
   u'fight',
   u'lack',
   u'edge',
   u'character',
   u'role',
   u'idea'],
  [u'<br', u'film', u'sequence', u'lava']],
 [[u'menace', u'satisfying.<br', u'year'],
  [u'crawl', u'credit', u'movie', u'experience'],
  [u'story',
   u'farm-boy',
   u'princess',
   u'galaxy',
   u'menace',
   u'wizard',
   u'pirate',
   u'relief',
   u'space-opera',
   u'setting.<br',
   u'formula'],
  [u'formula'],
  [u'credit', u'twist', u'special.<br', u'story', u'tale'],
  [u'darkness', u'picture', u'movie', u'twist', u'time'],
  [u'villain', u'father'],
  [u'light', u'episode', u'problem'],
  [u'revenge',
   u'entertaining',
   u'movie',
   u'effect',
   u'plenty',
   u'action',
   u'scene'],
  [u'acting',
   u'plot',
   u'plot',
   u'burden',
   u'director',
   u'man',
   u'performance',
   u'career',
   u'actor',
   u'plot'],
  [u'film', u'burden'],
  [u'child', u'product', u'miracle', u'birth'],
  [u'explanation', u'observation'],
  [u'testing', u'suspension', u'disbelief'],
  [u'kid',
   u'adult',
   u'villain',
   u'history',
   u'tragedy',
   u'guy',
   u'grace',
   u'redemption',
   u'end.<br'],
  [u'star-spanning',
   u'civilization',
   u'gravity',
   u'gasoline',
   u'physician',
   u'cause',
   u'society',
   u'problem'],
  [u'thing',
   u'child',
   u'guy',
   u'root',
   u'evil',
   u'film',
   u'course',
   u'foolishness'],
  [u'way'],
  [u'doctor', u'droid', u'technology', u'society', u'conclusion'],
  [u'course'],
  [u'present'],
  [u'droid',
   u'protocol',
   u'droid',
   u'apprentice',
   u'planet',
   u'droids".<br',
   u'grief.<br'],
  [u'plot', u'episode'],
  [u'palpatine', u'sense'],
  [u'ty', u'story', u'afterthought', u'movie', u'rating'],
  [u'fun', u'film']],
 [[u'tv-made', u'thriller', u'talk', u'action'],
  [u'plot', u'writing', u'exposition'],
  [u'scenario', u'ditch', u'favor', u'killer'],
  [u'introduction', u'writing', u'stray'],
  [u'lot', u'hysteria', u'thunder', u'lightning', u'effect'],
  [u'failure', u'producer'],
  [u'talent', u'script', u'herring', u'hiding', u'closet']],
 [[u'sport', u'cast', u'thriller', u'actor', u'talk'],
  [u'<br', u'actor', u'woman', u'verify', u'chick', u'flick'],
  [u'network.<br', u'murder', u'scene'],
  [u'<br', u'way', u'year']],
 [[u'class', u'film'],
  [u'inner-city',
   u'school',
   u'film',
   u'subject',
   u'discussion',
   u'class',
   u'lot',
   u'discussion',
   u'class'],
  [u'relationship', u'film', u'scene', u'movie'],
  [u'year'],
  [u'director',
   u'mirror',
   u'technique',
   u'conflict',
   u'character',
   u'scene',
   u'example',
   u'technique',
   u'sexy".<br',
   u'student',
   u'trouble',
   u'end',
   u'film'],
  [u'theme', u'movie', u'africanism', u'matter', u'driver']],
 [[u'crime', u'movie'],
  [u'series', u'crime', u'killer', u'movie', u'investigation'],
  [u'tale', u'cop', u'truth']],
 [[u'thriller',
   u'concept',
   u'acting',
   u'photography',
   u'intention',
   u'execution.<br',
   u'star',
   u'detective',
   u'town',
   u'behest',
   u'friend',
   u'force'],
  [u'investigation',
   u'murder',
   u'theorizing',
   u'existence',
   u'serial',
   u'killer'],
  [u'victim',
   u'romance',
   u'girl',
   u'witness',
   u'school',
   u'blind.<br',
   u'story',
   u'quantum',
   u'leap',
   u'plot',
   u'hole',
   u'movie',
   u'hell'],
  [u'acting', u'end', u'investigator']],
 [[u'mercede', u'road', u'forest', u'tree'],
  [u'<br', u'character', u'hispanic'],
  [u'father', u'mother', u'story'],
  [u'town', u'farm', u'folk', u'hick', u'thumb', u'accent', u'flare'],
  [u'deal'],
  [u'actor.<br',
   u'title',
   u'concern',
   u'serial',
   u'killer',
   u'nickname',
   u'victim'],
  [u'victim'],
  [u'killer', u'hiatus', u'resurface', u'witness', u'ask'],
  [u'job', u'person', u'surprise'],
  [u'film'],
  [u'<br', u'movie', u'town', u'detective'],
  [u'murder', u'body', u'landfill'],
  [u'brilliance', u'victim'],
  [u'logic', u'jennifer'],
  [u'motive', u'killer', u'pack', u'punch'],
  [u'retrospect',
   u'film',
   u'life',
   u'individual',
   u'murder',
   u'wacko',
   u'time',
   u'looney',
   u'toons.<br',
   u'job',
   u'interrogation'],
  [u'bit', u'surprise', u'murder'],
  [u'killer', u'victim', u'opportunity'],
  [u'end', u'shakiness', u'surprise'],
  [u'boy']],
 [[u'actor', u'movie', u'shadow', u'villain'],
  [u'husband',
   u'radio',
   u'frequency',
   u'person',
   u'contact',
   u'living',
   u'<br',
   u'thriller',
   u'spot'],
  [u'way', u'stuff'],
  [u'excitement', u'movie', u'place', u'fool'],
  [u'acting', u'movie']],
 [[u'fact', u'selling', u'movie', u'get-go'],
  [u'hell', u'vampire', u'this.<br', u'movie'],
  [u'force', u'thing', u'hell'],
  [u'end', u'caption'],
  [u'movie', u'credibility', u'thing', u'start'],
  [u'start', u'plot', u'end', u'thumb']],
 [[u'movie', u'exorcist'],
  [u'seeing', u'evp', u'passage', u'fact'],
  [u'movie', u'class', u'pg-13', u'movie'],
  [u'pg-13', u'genre'],
  [u'day', u'blood', u'day', u'day'],
  [u'movie', u'think', u'mentality'],
  [u'jump',
   u'movie',
   u'ending',
   u'movie',
   u'history',
   u'resolution',
   u'money',
   u'movie']],
 [[u'cinema',
   u'fan',
   u'disappointment',
   u'cinematography',
   u'camera',
   u'work',
   u'direction'],
  [u'film', u'horror', u'movie', u'market'],
  [u'bit', u'factor', u'concept'],
  [u'movie', u'reasoning', u'occurrence'],
  [u'acting',
   u'mind',
   u'character',
   u'emotion',
   u'thriller',
   u'movies.<br',
   u'movie']],
 [[u'expert', u'message', u'wife', u'gadget'],
  [u'hint', u'scale'],
  [u'role',
   u'story',
   u'point',
   u'movie',
   u'question',
   u'viewer',
   u'questions.<br',
   u'widower',
   u'wife'],
  [u'bit', u'actor', u'waacky-hijink', u'role', u'year'],
  [u'wrinkle',
   u'guile',
   u'panache',
   u'quarter',
   u'century',
   u'performance',
   u'script'],
  [u'plot', u'path', u'path'],
  [u'path', u'sort', u'denouement', u'ty'],
  [u'reason', u'junk', u'support', u'love']],
 [[u'trailer', u'film', u'month', u'release', u'film', u'life', u'phenomenon'],
  [u'thought', u'horror', u'film', u'year', u'crap'],
  [u'movie', u'trailer', u'film', u'element'],
  [u'advertisement', u'movie', u'disappointment.<br', u'movie', u'year'],
  [u'movie', u'week', u'release'],
  [u'movie', u'fact', u'thing', u'movie', u'crap'],
  [u'man', u'answer', u'mean'],
  [u'film', u'clich\xe9'],
  [u'wife', u'voice', u'appliance'],
  [u'message', u'wife'],
  [u'wife', u'person'],
  [u'movie', u'person'],
  [u'clock-stopping-at-the-same-exact-time-every-night',
   u'trick',
   u'spirit',
   u'menace',
   u'hero'],
  [u'film', u'jump', u'scene', u'scene'],
  [u'door', u'sequel'],
  [u'message', u'message', u'voice', u'evp', u'tune'],
  [u'end', u'horror', u'film'],
  [u'reason', u'film', u'person', u'fan'],
  [u'sure', u'aspect', u'movie', u'concept', u'throat', u'face'],
  [u'film'],
  [u'movie', u'commercial', u'ghost', u'film']],
 [[u'life',
   u'architect',
   u'family',
   u'man',
   u'turn',
   u'wife',
   u'accident',
   u'tyre',
   u'car'],
  [u'day', u'man', u'contact', u'wife'],
  [u'phone',
   u'phone',
   u'contact',
   u'man',
   u'wife',
   u'noise',
   u'event',
   u'shelf',
   u'copy'],
  [u'hearing', u'press', u'minute'],
  [u'film', u'time', u'thriller'],
  [u'hour',
   u'sequence',
   u'awe',
   u'progression',
   u'stillness',
   u'tragedy',
   u'haunt',
   u'halt',
   u'film'],
  [u'jump', u'context'],
  [u'style', u'editing', u'camera-work', u'action'],
  [u'climax'],
  [u'explanation', u'picture'],
  [u'conclusion', u'rock'],
  [u'job', u'point', u'lighting', u'camera-work'],
  [u'lighting', u'score', u'flick'],
  [u'hardware',
   u'empty.<br',
   u'film',
   u'heart',
   u'component',
   u'character',
   u'story'],
  [u'connection', u'sentiment', u'material'],
  [u'thrill', u'stuff', u'grave'],
  [u'tv', u'screen'],
  [u'impact', u'performance'],
  [u'actor', u'map', u'performance'],
  [u'clunker', u'pear', u'shape', u'matter', u'crop', u'horror'],
  [u'shame', u'flick', u'promise', u'idea', u'cast', u'hand']],
 [[u'chocolat',
   u'tone',
   u'poem',
   u'effect',
   u'colonialism',
   u'family',
   u'year',
   u'rule'],
  [u'theme', u'film', u'scope', u'emphasis'],
  [u'film', u'perspective', u'adult', u'childhood', u'home', u'country'],
  [u'woman',
   u'childhood',
   u'father',
   u'government',
   u'official',
   u'friendship',
   u'manservant'],
  [u'heart', u'film', u'mother', u'relationship', u'tension'],
  [u'<br', u'household', u'public', u'space'],
  [u'family',
   u'room',
   u'limit',
   u'house',
   u'servant',
   u'shower',
   u'bronze',
   u'body',
   u'family'],
  [u'husband', u'business', u'rule', u'society'],
  [u'sequence',
   u'bedroom',
   u'dress',
   u'image',
   u'mirror',
   u'longing',
   u'eye',
   u'interaction'],
  [u'<br',
   u'form',
   u'bond',
   u'manservant',
   u'plate',
   u'ant',
   u'shoulder',
   u'walk',
   u'sky'],
  [u'spite',
   u'bond',
   u'nature',
   u'relationship',
   u'command',
   u'conversation',
   u'teacher',
   u'home',
   u'stand',
   u'dinner',
   u'table',
   u'command'],
  [u'plane',
   u'propeller',
   u'land',
   u'mountain',
   u'crew',
   u'passenger',
   u'compound',
   u'replacement'],
  [u'visitor',
   u'disdain',
   u'owner',
   u'coffee',
   u'plantation',
   u'food',
   u'kitchen',
   u'mistress',
   u'hiding',
   u'room'],
  [u'upset',
   u'balance',
   u'shower',
   u'servant',
   u'taunt',
   u'attraction',
   u'confrontation',
   u'manservant.<br',
   u'childhood',
   u'memory',
   u'director',
   u'isolation',
   u'land'],
  [u'victim', u'oppressor', u'guy'],
  [u'fact', u'boy', u'man', u'character', u'dignity', u'stature', u'pain'],
  [u'pace', u'audience', u'film', u'phrase', u'coach', u'emotion'],
  [u'truth', u'gesture', u'glance', u'longing', u'heart']],
 [[u'sheer', u'absurdity', u'movie', u'life', u'piece', u'crap'],
  [u'lack',
   u'moment',
   u'cop-out',
   u'trick',
   u'music',
   u'character',
   u'door',
   u'push',
   u'curtain'],
  [u'thing', u'reason', u'character', u'story', u'line', u'character'],
  [u'component', u'film']],
 [[u'idea', u'actor', u'story', u'writing', u'depth'], [u'theater']],
 [[u'dirth', u'movie', u'market', u'faith', u'film', u'industry', u'endeavor'],
  [u'plot', u'headache'],
  [u'effort', u'suspension', u'disbelief'],
  [u'ordeal', u'demise'],
  [u'sure',
   u'heart-stopper',
   u'moment',
   u'noise',
   u'viewer.<br',
   u'acting',
   u'role',
   u'date'],
  [u'quality', u'offer', u'archietecture'],
  [u'idea', u'world', u'shadow', u'living', u'grave']],
 [[u'movie', u'year'],
  [u'plot', u'character', u'premise'],
  [u'author', u'wife', u'car', u'accident', u'bug'],
  [u'grief', u'apartment', u'hobby'],
  [u'guy', u'fellow', u'tv'],
  [u'person',
   u'thank',
   u'deal',
   u'person',
   u'message',
   u'person',
   u'tape',
   u'recorder',
   u'video',
   u'camera',
   u'cell',
   u'phone',
   u'cell'],
  [u'explanation'],
  [u'piece', u'paper', u'knock', u'stuff', u'pictogram'],
  [u'house', u'nick', u'time', u'guy'],
  [u'living', u'electronic', u'time'],
  [u'nod', u'agreement'],
  [u'serial', u'killer', u'working', u'demon', u'style', u'swoop', u'cartoon'],
  [u'message', u'grave', u'son', u'way', u'kid', u'horror'],
  [u'kid', u'smile']],
 [[u'trailer'],
  [u'start', u'twist', u'monkey'],
  [u'scary', u'film', u'noise', u'bang', u'audience', u'jump'],
  [u'shame', u'idea']],
 [[u'shame', u'story', u'latch', u'start', u'head', u'time', u'conclusion'],
  [u'end',
   u'fault',
   u'pleasure',
   u'star',
   u'brand',
   u'movie',
   u'bit',
   u'performance'],
  [u'man',
   u'wife',
   u'spirit',
   u'afterlife',
   u'idea',
   u'fuzz',
   u'business',
   u'television',
   u'screen',
   u'broadcast.<br',
   u'idea',
   u'spirit',
   u'airwave',
   u'lot',
   u'person',
   u'comment'],
  [u'suspension', u'disbelief', u'film', u'hell', u'place', u'credit'],
  [u'indeed.<br', u'movie', u'film', u'fault', u'filmmaker'],
  [u'awake', u'guess']],
 [[u'effect', u'performance'],
  [u'<br', u'pony', u'movie', u'year', u'crime'],
  [u'<br',
   u'movie',
   u'letter',
   u'baby',
   u'boom',
   u'generation',
   u'prejudice',
   u'service',
   u'way',
   u'resolution',
   u'end.<br',
   u'entertaining',
   u'movie'],
  [u'film', u'movie', u'level'],
  [u'point', u'film'],
  [u'<br', u'choice', u'place', u'time', u'year'],
  [u'director', u'vision', u'price'],
  [u'idiocy', u'innocence', u'naivety', u'quality']],
 [[u'half', u'film', u'half', u'experience'],
  [u'film', u'person', u'character']],
 [[u'person', u'proof', u'man', u'lack', u'intelligence'],
  [u'movie', u'convention', u'leg', u'drug', u'girlfriend'],
  [u'addition', u'product', u'placement', u'film'],
  [u'film']],
 [[u'movie', u'year', u'theater', u'home', u'confidence', u'movie', u'year'],
  [u'movie',
   u'joke',
   u'joke',
   u'year',
   u'displeasure',
   u'bus',
   u'trip',
   u'favor',
   u'skip',
   u'aisle']],
 [[u'premise'],
  [u'movie',
   u'chick',
   u'flick',
   u'person',
   u'airport',
   u'thing',
   u'degree',
   u'turn',
   u'<br',
   u'kind',
   u'mind',
   u'love',
   u'story',
   u'nonsense',
   u'movie',
   u'theater'],
  [u'opinion',
   u'meta-horror',
   u'film',
   u'sceam',
   u'logic',
   u'time',
   u'sependipity',
   u'awesome',
   u'dreamworld',
   u'<br',
   u'scope',
   u'character'],
  [u'film', u'sicko', u'plus', u'book'],
  [u'proceed',
   u'freak',
   u'victim',
   u'way',
   u'guy',
   u'<br',
   u'chick',
   u'flick']],
 [[u'story', u'acting'],
  [u'voice', u'temperament'],
  [u'idea', u'thing', u'boy', u'film']],
 [[u'comedy',
   u'teenager',
   u'taste',
   u'moment',
   u'way',
   u'point',
   u'voice',
   u'belief'],
  [u'life']],
 [[u'release', u'film', u'life'],
  [u'year'],
  [u'point', u'plot', u'cast'],
  [u'stupidity', u'kind', u'kind', u'place', u'screen']],
 [[u'movie', u'help'],
  [u'crapfest'],
  [u'movie',
   u'film',
   u'bastardization.<br',
   u'military',
   u'fringe',
   u'element',
   u'wind',
   u'child',
   u'school'],
  [u'child', u'world', u'asininity'],
  [u'film', u'bomb', u'film', u'moment'],
  [u'minute', u'screen', u'time'],
  [u'man',
   u'tale',
   u'actor',
   u'vacation',
   u'moment',
   u'screen',
   u'here.<br',
   u'appearance',
   u'biker'],
  [u'role', u'biker', u'film.<br', u'teacher', u'kid', u'skill', u'time'],
  [u'movie',
   u'house',
   u'moment',
   u'dance',
   u'sequence',
   u'series',
   u'robot',
   u'help',
   u'music',
   u'crew'],
  [u'scene', u'film', u'dog', u'spittle.<br', u'film'],
  [u'film', u'bout', u'loser', u'kid', u'hero', u'rent'],
  [u'loser'],
  [u'badger']],
 [[u'sort',
   u'family',
   u'parody',
   u'blending',
   u'gentleman',
   u'metal',
   u'jacket',
   u'doubt',
   u'movie',
   u'movie',
   u'spot'],
  [u'gag', u'line']],
 [[u'film', u'life', u'living', u'group', u'boy', u'marine'],
  [u'film', u'lot', u'moment', u'watch'],
  [u'film'],
  [u'confrontation', u'boy', u'film', u'boy', u'revenge'],
  [u'film', u'day', u'laughter']],
 [[u'direction'],
  [u'close-up', u'shot', u'scene', u'close-up', u'impact'],
  [u'<br',
   u'scenery',
   u'backdrop',
   u'cantina',
   u'estate',
   u'town',
   u'roll',
   u'journey',
   u'revenge'],
  [u'glimpse', u'place', u'camera', u'picture', u'head'],
  [u'<br', u'score', u'emotion'],
  [u'story'],
  [u'thing', u'person', u'writing'],
  [u'<br', u'thriller', u'storyline', u'premise', u'thing'],
  [u'storyline', u'movie'],
  [u'<br', u'film'],
  [u'movie', u'head', u'film']],
 [[u'hour', u'movie', u'act', u'movie', u'title'],
  [u'thing', u'film', u'theme', u'tune'],
  [u'cd.dont']],
 [[u'movie', u'premise', u'talent', u'turkey'],
  [u'friend', u'movie', u'mind', u'praise', u'story'],
  [u'character', u'pilot', u'plane', u'rest', u'movie'],
  [u'<br', u'texan', u'horse', u'businessman', u'tag', u'ride'],
  [u'death', u'meeting', u'associate'],
  [u'<br',
   u'character',
   u'whore',
   u'attack',
   u'man',
   u'turn',
   u'stab',
   u'knife',
   u'thing',
   u'convent'],
  [u'explanation', u'talent', u'script', u'editing']],
 [[u'movie',
   u'actor',
   u'talent',
   u'potboiler".<br',
   u'plenty',
   u'stereotype',
   u'situation',
   u'popcorn.<br',
   u'story',
   u'line',
   u'movie',
   u'point',
   u'tv',
   u'series.<br',
   u'drug-lord',
   u'role',
   u'associate',
   u'quinn-martin',
   u'cop'],
  [u'character', u'reason', u'love', u'wife'],
  [u'wife', u'companionship', u'body', u'movie', u'waste', u'time']],
 [[u'thriller'],
  [u'plot'],
  [u'twist'],
  [u'eye', u'candy'],
  [u'movie', u'scream'],
  [u'plot', u'thing', u'movie'],
  [u'hotel', u'manager', u'board'],
  [u'twist', u'story', u'character', u'joke'],
  [u'thriller']],
 [[u'throat', u'blood', u'squirt', u'end', u'character'],
  [u'guy', u'guy', u'way'],
  [u'movie', u'guy'],
  [u'photography', u'editing', u'motion', u'picture', u'waste', u'talent'],
  [u'let', u'category', u'corpse']],
 [[u'payback',
   u'game',
   u'drama',
   u'revenge',
   u'plot',
   u'story',
   u'line',
   u'stage',
   u'firework'],
  [u'man',
   u'trophy',
   u'wife',
   u'mob',
   u'boss',
   u'gangster',
   u'mansion',
   u'henchman'],
  [u'wife', u'attention', u'stranger', u'husband', u'boredom', u'love'],
  [u'hero', u'reaction', u'husband', u'movie', u'excuse', u'violence'],
  [u'actor', u'figure', u'prince'],
  [u'accent'],
  [u'cameo', u'player', u'rock', u'star']],
 [[u'film', u'pace'],
  [u'american', u'rest', u'world', u'reason'],
  [u'kid', u'planet'],
  [u'world', u'view', u'world', u'nation'],
  [u'film', u'luck', u'time']],
 [[u'premise', u'ty', u'middle'],
  [u'person', u'segment'],
  [u'person', u'plot'],
  [u'section', u'minute', u'flick'],
  [u'thing']],
 [[u'wife', u'yr', u'son'],
  [u'writing', u'pixar', u'excursion'],
  [u'fact', u'time', u'attention'],
  [u'movie',
   u'story',
   u'son',
   u'walk',
   u'out.<br',
   u'film',
   u'concept',
   u'screenplay'],
  [u'impression', u'family', u'lord', u'sequence', u'minute', u'time']],
 [[u'film', u'work', u'borrowing'],
  [u'review',
   u'singing',
   u'frog',
   u'cartoon',
   u'baby',
   u'darlin',
   u'ragtime',
   u'gal'],
  [u'feature',
   u'similarity',
   u'storyline',
   u'inventor',
   u'corporation',
   u'inventions.<br',
   u'camera',
   u'angle',
   u'city',
   u'environments.<br',
   u'robot',
   u'servant',
   u'robot',
   u'household',
   u'design',
   u'film',
   u'sort',
   u'look.<br',
   u'contradiction',
   u'quote',
   u'end',
   u'company',
   u'innovator',
   u'catalog',
   u'film',
   u'clone',
   u'tweak',
   u'storyline',
   u'ethnicity).<br',
   u'filmmaker',
   u'story',
   u'speak',
   u'object',
   u'noise',
   u'direction',
   u'attention',
   u'span',
   u'less.<br',
   u'villain',
   u'pleasure'],
  [u'landscape', u'mid-90s.<br', u'film'],
  [u'end',
   u'cartoon',
   u'innovating',
   u'storytelling',
   u'screen',
   u'proof',
   u'virtue']],
 [[u'movie', u'semblance', u'plot', u'series', u'character', u'story'],
  [u'film'],
  [u'movie',
   u'pile',
   u'garbage',
   u'person',
   u'animation',
   u'skill',
   u'creativity',
   u'storytelling',
   u'ability'],
  [u'effort', u'studio'],
  [u'morale',
   u'motivation',
   u'problem',
   u'lack',
   u'oversight',
   u'quality',
   u'control'],
  [u'movie', u'movie', u'time', u'list']],
 [[u'truth', u'storyline', u'film', u'rubbish'],
  [u'robinson', u'film', u'place'],
  [u'idea', u'rubbish'],
  [u'brother', u'half', u'way', u'story'],
  [u'character', u'robinson', u'film'],
  [u'time', u'waste']],
 [[u'screen', u'version', u'man', u'year', u'date', u'year'],
  [u'kind',
   u'movie',
   u'producer',
   u'money',
   u'experience',
   u'make',
   u'attention',
   u'alimony',
   u'drug',
   u'dealer',
   u'bodyguard',
   u'limb',
   u'charge',
   u'daughter',
   u'family'],
  [u'action', u'score', u'reel', u'impression'],
  [u'case', u'choice', u'director', u'version', u'improvement']],
 [[u'reason'],
  [u'tooth', u'schooler'],
  [u'woman', u'schooler'],
  [u'teen', u'adult']],
 [[u'killer-thriller', u'movie', u'time'],
  [u'movie', u'fear'],
  [u'person', u'thriller', u'movie', u'different.<br', u'movie'],
  [u'mess'],
  [u'script',
   u'movie',
   u'scream',
   u'scream',
   u'sequel',
   u'movie',
   u'century']],
 [[u'film', u'school'],
  [u'plot', u'lot', u'year', u'actor', u'student'],
  [u'film', u'nostalgia'],
  [u'nostalgia', u'factor'],
  [u'plot',
   u'city',
   u'school',
   u'threatening',
   u'bus',
   u'student',
   u'city',
   u'school'],
  [u'student', u'school'],
  [u'fact', u'character', u'life', u'mansion'],
  [u'money', u'school', u'property', u'taxe'],
  [u'school', u'board', u'school', u'student'],
  [u'college', u'school'],
  [u'film']],
 [[u'plot', u'film', u'lot', u'hole'],
  [u'car', u'movie', u'lot', u'car'],
  [u'enjoyment', u'place', u'town'],
  [u'piece', u'local'],
  [u'copy', u'video', u'store'],
  [u'copy', u'path', u'race', u'town']],
 [[u'comedy'],
  [u'hair', u'scene', u'work', u'face'],
  [u'suitor', u'guy', u'room', u'scene', u'formula', u'reason'],
  [u'array', u'talent'],
  [u'line'],
  [u'humour', u'trouble', u'fart', u'joke', u'laugh'],
  [u'basketball',
   u'scene',
   u'ham',
   u'predicament',
   u'form',
   u'opponent',
   u'smile',
   u'reaction'],
  [u'reaction'],
  [u'bit', u'work', u'story', u'end', u'film', u'failure', u'writing'],
  [u'tv', u'night', u'cash']],
 [[u'potential', u'reality'],
  [u'movie'],
  [u'action'],
  [u'joke'],
  [u'character'],
  [u'plot', u'point']],
 [[u'film',
   u'offer',
   u'imagination',
   u'premise',
   u'execution',
   u'thing',
   u'comedy',
   u'energy'],
  [u'insurance',
   u'risk',
   u'manager',
   u'wife',
   u'cheating',
   u'scuba',
   u'instructor',
   u'day',
   u'honeymoon'],
  [u'home',
   u'friend',
   u'party',
   u'school',
   u'year',
   u'alert',
   u'person',
   u'date',
   u'person',
   u'thing',
   u'salsa',
   u'dancing',
   u'eating',
   u'food'],
  [u'day',
   u'marriage',
   u'film',
   u'directing',
   u'effort',
   u'screenplay',
   u'parent',
   u'film',
   u'classic',
   u'piece',
   u'drivel'],
  [u'film'],
  [u'film', u'start', u'scene', u'ridiculousness', u'script'],
  [u'script', u'thought', u'time', u'energy', u'event'],
  [u'time', u'film', u'character', u'speech'],
  [u'lot', u'script', u'way', u'film', u'comedy', u'romance']],
 [[u'lot', u'thing', u'movie'],
  [u'way'],
  [u'boring',
   u'guy',
   u'notch',
   u'boring',
   u'guy',
   u'belt',
   u'reality',
   u'effort',
   u'friend',
   u'assortment',
   u'clich\xe9',
   u'guy',
   u'guy',
   u'storyline',
   u'beginning',
   u'any-movie',
   u'style',
   u'plot',
   u'turn',
   u'average',
   u'knock-knock'],
  [u'problem',
   u'character',
   u'development',
   u'school',
   u'play',
   u'writer',
   u'stock',
   u'bit'],
  [u'joke',
   u'version',
   u'standard',
   u'gross-out',
   u'humour',
   u'regulation',
   u'chunder',
   u'scene',
   u'man',
   u'etc.<br',
   u'conclusion',
   u'fact',
   u'movie',
   u'meaning',
   u'word',
   u'shart',
   u'thing'],
  [u'dog',
   u'dinner',
   u'sugar',
   u'coating',
   u'viewer',
   u'taste',
   u'end',
   u'rancid.<br',
   u'comment',
   u'film',
   u'between-friends-season',
   u'movie']],
 [[u'movie', u'sitcom', u'acting'],
  [u'movie', u'thing'],
  [u'plot'],
  [u'plot', u'outcome']],
 [[u'film'],
  [u'order',
   u'items.<br',
   u'wonder',
   u'money',
   u'drivel.<br',
   u'reviewer',
   u'beggar',
   u'belief',
   u'person',
   u'film',
   u'actor',
   u'rubbish']],
 [[u'stuff',
   u'movie',
   u'studio',
   u'years.<br',
   u'couple',
   u'opposite',
   u'plot',
   u'line',
   u'surprise',
   u'movie',
   u'sight',
   u'gag',
   u'fart',
   u'joke'],
  [u'movie'],
  [u'deal',
   u'money',
   u'kind',
   u'movie',
   u'them.<br',
   u'splendor',
   u'movie',
   u'head',
   u'movie',
   u'executive',
   u'movie',
   u'sense',
   u'movie',
   u'unknown',
   u'stuff',
   u'airplane']],
 [[u'movie', u'year', u'quality', u'filmmaker', u'comedy'],
  [u'<br', u'grating', u'charmless', u'performance', u'year'],
  [u'schtick'],
  [u'talent', u'schtick', u'break', u'material'],
  [u'movie', u'chemistry', u'shame', u'actress', u'career'],
  [u'movie', u'career', u'material', u'task', u'actress'],
  [u'exception', u'moment', u'boss', u'friend', u'film'],
  [u'character'],
  [u'accent', u'unfunny.<br', u'premise', u'promise'],
  [u'writer', u'comedy', u'excuse', u'comedy']],
 [[u'thriller'],
  [u'type', u'horror', u'movie', u'thriller', u'time'],
  [u'movie', u'character', u'story', u'sympathy', u'hatred', u'person'],
  [u'character', u'clerk'],
  [u'girl', u'role', u'movie', u'heck', u'break'],
  [u'atrendant', u'plot'],
  [u'guy', u'flight'],
  [u'guy', u'airport', u'movie'],
  [u'character', u'liner', u'use', u'plot', u'guy', u'plane'],
  [u'plot'],
  [u'scene', u'woman', u'character', u'hotel', u'executive', u'charge'],
  [u'color'],
  [u'movie', u'executive', u'woman', u'idiot'],
  [u'movie', u'plot', u'device', u'movie', u'conclusion'],
  [u'hotel', u'clerk', u'drop', u'phone', u'hotel', u'boss']],
 [[u'movie', u'appeal', u'charisma', u'notoriety'],
  [u'recipe', u'title', u'movie.<br', u'doubt'],
  [u'<br', u'guy', u'parent', u'movie', u'scene', u'title', u'script'],
  [u'actor', u'thing', u'lot', u'story', u'script.<br']],
 [[u'fun',
   u'death',
   u'violence',
   u'innuendo',
   u'adult',
   u'child',
   u'crudeness',
   u'alcohol',
   u'abuse',
   u'minor',
   u'drug',
   u'theft',
   u'parent',
   u'babysitter',
   u'hell',
   u'joke',
   u'polouse',
   u'person',
   u'kid',
   u'house',
   u'middle',
   u'night',
   u'yup',
   u'kid',
   u'movie'],
  [u'element',
   u'woman',
   u'house',
   u'husband',
   u'prisoner',
   u'year',
   u'neighborhood',
   u'kid'],
  [u'parent',
   u'kid',
   u'movie',
   u'kid',
   u'teen',
   u'today',
   u'movie',
   u'scenario',
   u'rub'],
  [u'adult', u'audience'],
  [u'character',
   u'clueless',
   u'parent',
   u'police',
   u'friend',
   u'babysitter',
   u'beer',
   u'boyfriend'],
  [u'material', u'kid', u'child', u'movie'],
  [u'computer', u'animation', u'voice', u'work', u'flick'],
  [u'money', u'time', u'child', u'mind', u'rent', u'bug', u'way', u'film']],
 [[u'children', u'movie', u'tearjerker', u'quality'],
  [u'voice', u'rest', u'talent'],
  [u'chance', u'movie'],
  [u'sugar', u'year', u'age']],
 [[u'movie',
   u'recollection',
   u'kind',
   u'review.<br',
   u'person',
   u'kid',
   u'favor',
   u'book'],
  [u'mind', u'film.<br', u'book', u'mouse', u'person'],
  [u'book', u'life', u'departure', u'home', u'journey']],
 [[u'year', u'set'],
  [u'couple', u'set', u'home', u'orphanage', u'brother', u'son'],
  [u'home', u'sibling', u'mouse'],
  [u'sense', u'world', u'family', u'cat'],
  [u'experience', u'family', u'loyalty', u'friendship'],
  [u'brother', u'embarrassment', u'model', u'boat', u'race.<br', u'cast']],
 [[u'couple', u'child'],
  [u'home', u'child'],
  [u'rest',
   u'clich\xe9',
   u'family',
   u'problem',
   u'jealousy',
   u'brother',
   u'end',
   u'issue',
   u'family'],
  [u'blunt',
   u'way.<br',
   u'director',
   u'mouse',
   u'clich\xe9',
   u'minute',
   u'clich\xe9'],
  [u'gig', u'use', u'size.<br', u'film', u'sibling'],
  [u'gig', u'cat', u'clich\xe9s']],
 [[u'movie'],
  [u'satire'],
  [u'movie', u'clich\xe9'],
  [u'<br', u'line', u'movie'],
  [u'fate', u'movie'],
  [u'price']],
 [[u'<br', u'half', u'clone'],
  [u'murder', u'it`s', u'audience', u'bed', u'attorney'],
  [u'film',
   u'credential',
   u'client',
   u'type',
   u'film',
   u'manner',
   u'respect',
   u'thriller',
   u'thing',
   u'man',
   u'time',
   u'court',
   u'room',
   u'drama',
   u'man']],
 [[u'idea', u'boy', u'havoc'],
  [u'movie', u'way'],
  [u'cartoon',
   u'writer',
   u'slapstick',
   u'person',
   u'bear',
   u'baseball',
   u'bat'],
  [u'cartoon',
   u'motion',
   u'picture.<br',
   u'film',
   u'hero',
   u'baby',
   u'door',
   u'parent',
   u'adoption'],
  [u'family',
   u'junior',
   u'time.<br',
   u'orphanage',
   u'nun',
   u'pen',
   u'pal',
   u'letter'],
  [u'wife',
   u'yasbeck',
   u'child',
   u'order',
   u'parent',
   u'neighborhood.<br',
   u'member',
   u'household',
   u'fact',
   u'camping',
   u'trip',
   u'bear',
   u'site',
   u'cat',
   u'father',
   u'politician.<br',
   u'junior',
   u'revenge',
   u'person'],
  [u'mother',
   u'bitch',
   u'grandfather',
   u'girl',
   u'kid',
   u'brat.<br',
   u'junior',
   u'laughs',
   u'film',
   u'message'],
  [u'kid'],
  [u'junior', u'twerp'],
  [u'time', u'kid'],
  [u'lot', u'profanity', u'prank', u'parent', u'screen'],
  [u'person',
   u'pleasure',
   u'film',
   u'liking',
   u'prevailing',
   u'opinion',
   u'viewer',
   u'movie',
   u'piece',
   u'crap']],
 [[u'life', u'ticket', u'movie', u'theater'],
  [u'mistake', u'life'],
  [u'offense', u'horror', u'credit', u'demon', u'child', u'head', u'sign'],
  [u'moment',
   u'film.<br',
   u'plot',
   u'wife',
   u'success',
   u'film',
   u'mind',
   u'problem',
   u'child'],
  [u'intent', u'frame', u'child', u'rudest', u'demon-spawn', u'screen'],
  [u'child', u'character'],
  [u'film', u'hell-child'],
  [u'disgust', u'person', u'theater', u'movie'],
  [u'way', u'sequel', u'body'],
  [u'marathon', u'sequel', u'minute'],
  [u'score'],
  [u'negative', u'film']],
 [[u'night',
   u'movie',
   u'time.<br',
   u'movie',
   u'cause',
   u'story',
   u'different.<br',
   u'movie',
   u'lead',
   u'movie',
   u'feel',
   u'person',
   u'movie.<br',
   u'music',
   u'chill',
   u'movie'],
  [u'less.<br', u'thriller.<br', u'again.<br', u'movie']],
 [[u'problem', u'movie', u'decade'],
  [u'movie', u'boy', u'parent', u'trouble'],
  [u'movie'],
  [u'sequel', u'fate']],
 [[u'person'],
  [u'boy', u'wreck', u'havoc', u'couple', u'yasbeck'],
  [u'film', u'child', u'kid', u'film'],
  [u'time'],
  [u'thing', u'sequel']],
 [[u'sub-par', u'plot', u'year', u'actor'], [u'actor', u'sequel']],
 [[u'movie', u'time', u'kid', u'fact'],
  [u'language', u'matter', u'kid'],
  [u'film',
   u'character',
   u'order',
   u'audience',
   u'movie',
   u'crowd',
   u'person',
   u'way',
   u'8-year-old',
   u'movie',
   u'kid',
   u'year'],
  [u'sure', u'film', u'box', u'office', u'reason', u'niche', u'market']],
 [[u'movie'],
  [u'comedy', u'level', u'beggar', u'belief'],
  [u'kind',
   u'father',
   u'child',
   u'kudo',
   u'dignity',
   u'onslaught',
   u'performance',
   u'humour'],
  [u'attempt', u'sentimentality', u'crudity', u'movie', u'experience'],
  [u'lowlight', u'thing', u'kid', u'actor', u'screen', u'mouth']],
 [[u'kid', u'way', u'type', u'adult', u'thieve', u'turn'],
  [u'brat', u'kid', u'problem'],
  [u'couple', u'husband', u'bit', u'kid', u'chance', u'mother'],
  [u'character', u'movie', u'laugh'],
  [u'sequel', u'film', u'fact', u'character', u'character', u'film'],
  [u'kid', u'kind', u'sequel'],
  [u'plot', u'parent', u'kid', u'way', u'orphanage', u'party', u'hellion'],
  [u'hellion', u'contact', u'convict', u'sort'],
  [u'character', u'father'],
  [u'kid', u'day', u'week']],
 [[u'comedy'],
  [u'sign', u'movie', u'emotion'],
  [u'theater', u'laughter', u'half', u'movie', u'tear', u'half'],
  [u'movie', u'judge']],
 [[u'movie', u'acted', u'directed', u'story'],
  [u'life', u'experiance', u'boy'],
  [u'football',
   u'program',
   u'town',
   u'boy',
   u'year',
   u'practice',
   u'travel',
   u'fun',
   u'football',
   u'team'],
  [u'movie'],
  [u'boy', u'life'],
  [u'type', u'program', u'school'],
  [u'movie', u'screen']],
 [[u'drivel'],
  [u'cinematography',
   u'movie',
   u'week',
   u'score',
   u'touching',
   u'face',
   u'person',
   u'life',
   u'motivation'],
  [u'glimpse',
   u'coach',
   u'motivation',
   u'dialog',
   u'opinion',
   u'opinion',
   u'tribute',
   u'comfort',
   u'zone',
   u'time',
   u'life'],
  [u'lesson'],
  [u'thing', u'thing'],
  [u'movie', u'heart']],
 [[u'story', u'story', u'movie', u'couple'],
  [u'performance', u'academy', u'award', u'compassion', u'movie']],
 [[u'star', u'action', u'master', u'suspense'],
  [u'board', u'plane', u'sit'],
  [u'house', u'father'],
  [u'minute', u'violence', u'intensity', u'scene'],
  [u'total', u'minute', u'action', u'end.<br', u'movie', u'plot'],
  [u'acting', u'character', u'movie', u'line', u'pitch'],
  [u'movie'],
  [u'acting',
   u'music',
   u'effect',
   u'make-up',
   u'directing',
   u'editing',
   u'writing'],
  [u'must-see', u'money'],
  [u'movie',
   u'boring.<br',
   u'stars.<br',
   u'rating',
   u'pg-13',
   u'sequence',
   u'rating',
   u'pg-13',
   u'sequence',
   u'scene']],
 [[u'performance', u'story', u'movie', u'expectation'],
  [u'movie', u'reviews', u'reviewer']],
 [[u'person', u'movie']],
 [[u'<br', u'critic', u'review', u'screening'],
  [u'critic', u'film', u'director', u'critic'],
  [u'review',
   u'for!<br',
   u'movie',
   u'laugh',
   u'end',
   u'moment',
   u'pause!<br',
   u'paraphrase',
   u'line',
   u'barbershop',
   u'scene',
   u'time',
   u'truth'],
  [u'performance', u'time', u'day', u'dance', u'scene'],
  [u'community', u'tolerance', u'country'],
  [u'be.<br', u'cast'],
  [u'actor', u'quality', u'writing', u'law'],
  [u'movie',
   u'fine',
   u'cast',
   u'role',
   u'role',
   u'wife',
   u'protagonist',
   u'performance'],
  [u'movie', u'self', u'contribution', u'film'],
  [u'rock', u'performance', u'man', u'mission'],
  [u'town', u'circumstance', u'heart', u'thing', u'movie', u'end', u'credit'],
  [u'treat', u'team', u'field', u'night.<br', u'note'],
  [u'teen', u'movie', u'price', u'admission', u'track']],
 [[u'job', u'film'], [u'movie', u'volunteer', u'mission']],
 [[u'story', u'time'],
  [u'kid', u'age', u'message', u'person', u'judge', u'difference'],
  [u'movie', u'junk', u'theatre', u'basis']],
 [[u'challenge', u'person', u'land', u'perfection', u'forefront'],
  [u'bigot', u'society', u'human', u'mind', u'heart', u'body', u'world'],
  [u'beauty', u'world', u'ambition', u'light', u'world'],
  [u'wish', u'individual']],
 [[u'movie', u'movie', u'year'],
  [u'performance', u'viewer', u'emotion', u'character'],
  [u'movie', u'effect', u'character', u'story', u'psyche', u'level']],
 [[u'actor', u'supporting'],
  [u'film', u'box', u'tissue', u'film', u'ice', u'water', u'veins.<br'],
  [u'setting', u'year'],
  [u'school', u'football', u'coach', u'teacher'],
  [u'fellow',
   u'possession',
   u'radio',
   u'shopping',
   u'cart',
   u'bicycle.<br',
   u'fellow',
   u'reason',
   u'film'],
  [u'nickname', u'exploration', u'soul.<br', u'movie', u'masterpiece']],
 [[u'event', u'heart', u'dramas'],
  [u'year', u'film'],
  [u'<br', u'film', u'football', u'coach'],
  [u'day',
   u'performance',
   u'men',
   u'football',
   u'field',
   u'coach',
   u'team',
   u'game'],
  [u'building'],
  [u'point', u'share', u'bond'],
  [u'life',
   u'football',
   u'priority',
   u'family',
   u'movie',
   u'deal',
   u'sort',
   u'life',
   u'problem',
   u'priority',
   u'life',
   u'person',
   u'death',
   u'family',
   u'relationship'],
  [u'movie', u'touch', u'issue', u'director', u'film'],
  [u'thing'],
  [u'performance', u'life', u'eye'],
  [u'mix', u'comedy', u'drama'],
  [u'<br', u'conclusion', u'critic', u'reviews'],
  [u'butt', u'film', u'star', u'reviews', u'school', u'rock', u'sense'],
  [u'performance'],
  [u'movie', u'year', u'reason', u'movie'],
  [u'rating']],
 [[u'movie'], [u'start', u'story', u'man', u'football', u'team.<br']],
 [[u'adventure',
   u'grandeur',
   u'magnificence',
   u'love',
   u'story',
   u'set',
   u'background',
   u'event',
   u'movie',
   u'hope',
   u'love',
   u'humanity',
   u'<br',
   u'dicaprio',
   u'screen',
   u'charisma',
   u'passion',
   u'trust',
   u'insouciance',
   u'ingenuity',
   u'wanderer',
   u'pretension',
   u'zest',
   u'life',
   u'<br',
   u'winslet',
   u'teen',
   u'guy',
   u'night',
   u'depth',
   u'despair',
   u'<br',
   u'racist',
   u'cheat',
   u'bribe',
   u'money',
   u'child',
   u'carat',
   u'diamond',
   u'worn',
   u'woman',
   u'lot',
   u'folk',
   u'ship',
   u'<br',
   u'mother',
   u'stature',
   u'daughter',
   u'snob',
   u'<br',
   u'master',
   u'shipbuilder',
   u'character',
   u'time',
   u'sense',
   u'history',
   u'<br',
   u'speed',
   u'record',
   u'spite',
   u'warning',
   u'iceberg',
   u'<br',
   u'explorer',
   u'search',
   u'diamond'],
  [u'<br',
   u'woman',
   u'love',
   u'story',
   u'nightmare',
   u'horror',
   u'shock',
   u'face',
   u'<br',
   u'photography',
   u'visual',
   u'footage',
   u'liner',
   u'ocean',
   u'floor',
   u'transformation',
   u'bow',
   u'viewer',
   u'interior',
   u'sight',
   u'date',
   u'destiny',
   u'dock',
   u'dolphin',
   u'racing',
   u'ship',
   u'ship',
   u'rail',
   u'magic',
   u'moment',
   u'intertwining',
   u'paper',
   u'camera',
   u'eye',
   u'shape',
   u'eye',
   u'<br',
   u'scene',
   u'collision',
   u'destiny',
   u'sequence',
   u'film\x97',
   u'water',
   u'help',
   u'epic',
   u'film'],
  [u'effect',
   u'film',
   u'decor',
   u'music',
   u'emotion',
   u'movie',
   u'hunting',
   u'range',
   u'feeling',
   u'<br',
   u'tribute',
   u'life',
   u'ship']],
 [[u'<br', u'thriller'],
  [u'director', u'job', u'action', u'plot'],
  [u'lot.<br',
   u'factor',
   u'closeness',
   u'victim',
   u'guy',
   u'time',
   u'victim']],
 [[u'suspense',
   u'effect',
   u'action',
   u'sophistication',
   u'cynicism',
   u'movie'],
  [u'movie'],
  [u'hero',
   u'movie',
   u'man',
   u'strength',
   u'integrity',
   u'man',
   u'way',
   u'world'],
  [u'movie', u'hogwash'],
  [u'jock', u'fun'],
  [u'man', u'integrity'],
  [u'person', u'school', u'football', u'business'],
  [u'person', u'life'],
  [u'movie', u'person', u'world'],
  [u'movie', u'nature']],
 [[u'movie', u'movie'], [u'death']],
 [[u'drama', u'movie', u'kind', u'guy', u'trailer'],
  [u'film', u'acting'],
  [u'job', u'radio'],
  [u'job'],
  [u'comedy'],
  [u'story', u'acting', u'comedy']],
 [[u'story', u'man', u'heart', u'thing'],
  [u'adversity', u'coach'],
  [u'youth', u'thing', u'intuition', u'compassion'],
  [u'school', u'teacher', u'plight', u'underdog', u'hand', u'card', u'way'],
  [u'way', u'coach'],
  [u'joke', u'life', u'boy', u'boy'],
  [u'scale', u'incident', u'friendship', u'life', u'kind', u'way', u'movie'],
  [u'movie', u'life', u'tale'],
  [u'brilliance']],
 [[u'movie', u'story', u'football', u'coach'],
  [u'actor', u'new.<br', u'man'],
  [u'day',
   u'football',
   u'ball',
   u'throw',
   u'ball',
   u'impatience',
   u'player',
   u'football',
   u'team',
   u'guy'],
  [u'day',
   u'football',
   u'player',
   u'up.<br',
   u'coach',
   u'act',
   u'team',
   u'day',
   u'nickname',
   u'passion',
   u'radio',
   u'general.<br',
   u'movie',
   u'assistant',
   u'team',
   u'train',
   u'hardship',
   u'player',
   u'respect',
   u'person',
   u'city'],
  [u'<br', u'movie', u'everybody', u'story'],
  [u'life', u'person', u'difference'],
  [u'heart', u'thing', u'life']],
 [[u'youth', u'catalyst', u'person', u'town'],
  [u'film',
   u'overlook',
   u'person',
   u'problem',
   u'patience',
   u'man',
   u'guilt',
   u'heart.<br',
   u'formula',
   u'film',
   u'story'],
  [u'movie',
   u'failure',
   u'performance',
   u'director',
   u'cast.<br',
   u'man',
   u'passion',
   u'sport',
   u'passion',
   u'man',
   u'life'],
  [u'background', u'mother', u'question', u'coach', u'intention'],
  [u'school',
   u'kid',
   u'mascot',
   u'disposition',
   u'acceptance',
   u'person',
   u'ounce',
   u'malice',
   u'body.<br',
   u'film',
   u'lot',
   u'pair',
   u'coach'],
  [u'actor', u'time', u'boring', u'grace', u'presence'],
  [u'essence', u'coach', u'possibility', u'amend', u'past'],
  [u'man.<br'],
  [u'actress', u'generation', u'work', u'mother'],
  [u'actress', u'school', u'principle', u'style'],
  [u'scene', u'film.<br', u'heart', u'person', u'society', u'judge'],
  [u'lot', u'idea', u'perspective']],
 [[u'story', u'belief', u'difference'],
  [u'screenwriter',
   u'racism',
   u'film',
   u'way',
   u'film',
   u'story',
   u'line.<br',
   u'incident',
   u'racism',
   u'attempt',
   u'realism'],
  [u'<br', u'town', u'person', u'race'],
  [u'leader', u'coach', u'father', u'caring']],
 [[u'film', u'ultra-nice'],
  [u'fact'],
  [u'based-on-a-real-life', u'story'],
  [u'character', u'reverse', u'life'],
  [u'role',
   u'characters.<br',
   u'film',
   u'bunch',
   u'meaning',
   u'kind',
   u'person'],
  [u'folk',
   u'friendship',
   u'love',
   u'compassion',
   u'school',
   u'kid',
   u'story',
   u'place'],
  [u'job', u'role'],
  [u'role', u'man', u'hour-and-a-half', u'character'],
  [u'loudness',
   u'guy',
   u'documentary',
   u'dvd',
   u'life',
   u'year',
   u'transformation',
   u'month',
   u'film']],
 [[u'validation',
   u'town',
   u'value',
   u'man',
   u'heart.<br',
   u'reviews',
   u'hostility'],
  [u'dignity', u'portrayal', u'fact', u'story', u'heartwarming'],
  [u'sport',
   u'town',
   u'school',
   u'portrayal',
   u'student',
   u'heart',
   u'me.<br',
   u'coach',
   u'daughter',
   u'decision',
   u'way']],
 [[u'fellow', u'user', u'person'],
  [u'trailer'],
  [u'movie', u'teen', u'movie', u'boy'],
  [u'ticket', u'week', u'thing'],
  [u'day', u'story', u'movie.<br', u'man'],
  [u'story', u'teenager', u'life', u'spending', u'day'],
  [u'day', u'school', u'football', u'team'],
  [u'movie', u'joy', u'lows', u'life'],
  [u'movie', u'place', u'heart'],
  [u'must-see', u'family', u'drama'],
  [u'movie']],
 [[u'movie',
   u'id',
   u'pose',
   u'assassin',
   u'killer',
   u'plan',
   u'man',
   u'family.<br',
   u'woman',
   u'woman',
   u'home',
   u'worry',
   u'death',
   u'grandmother',
   u'flight',
   u'times.<br',
   u'flight',
   u'guy',
   u'profession',
   u'plan',
   u'sp'],
  [u'death.<br',
   u'cost',
   u'life',
   u'story',
   u'movie',
   u'year',
   u'thing',
   u'attention',
   u'movie',
   u'importance',
   u'movie',
   u'pen',
   u'time',
   u'joke',
   u'quirk',
   u'thriller',
   u'fan',
   u'hint',
   u'bathroom',
   u'scene',
   u'jack',
   u'thank',
   u'attendant',
   u'flight',
   u'female',
   u'attendant']],
 [[u'film'],
  [u'performance'],
  [u'way'],
  [u'character', u'performance'],
  [u'plot', u'person', u'life', u'character'],
  [u'action', u'buff', u'slow', u'action', u'film']],
 [[u'film', u'area', u'role'], [u'coach', u'end', u'movie']],
 [[u'fact',
   u'movie',
   u'story',
   u'course',
   u'experience',
   u'viewer',
   u'theme',
   u'movie'],
  [u'story', u'twist', u'viewer', u'time'],
  [u'film', u'point', u'boring', u'performance', u'opinion'],
  [u'lasting', u'smile', u'face'],
  [u'movie.<br']],
 [[u'game.the',
   u'graphic',
   u'mission',
   u'yet,i',
   u'game',
   u'games.it',
   u'360remake',
   u'it.it',
   u'game',
   u'kind',
   u'games.so',
   u'thing',
   u'game',
   u'time',
   u'game',
   u'game']],
 [[u'bond', u'game'], [u'bond', u'movie', u'time'], [u'bond', u'game']],
 [[u'year', u'release', u'field', u'first-person', u'shooter'],
  [u'quake',
   u'series',
   u'combination',
   u'quality',
   u'enemy',
   u'intelligence',
   u'challenge',
   u'fun',
   u'game'],
  [u'mission',
   u'objective',
   u'bond',
   u'baddie',
   u'screen',
   u'camera',
   u'security',
   u'rescue',
   u'hostage',
   u'girl'],
  [u'gadget', u'game', u'watch'],
  [u'game',
   u'movie',
   u'storyline',
   u'character',
   u'scene',
   u'movie',
   u'dam',
   u'bungee-jump',
   u'prop-plane',
   u'escape',
   u'tank',
   u'chase'],
  [u'layout', u'situation', u'film'],
  [u'level', u'player', u'string', u'scene'],
  [u'difficulty', u'level', u'mission', u'objective', u'enemy', u'bullet'],
  [u'code',
   u'button',
   u'level',
   u'time',
   u'frame',
   u'character',
   u'multiplayer'],
  [u'multiplayer', u'first-person', u'shooter'],
  [u'ton', u'option', u'friend', u'reason', u'time', u'kick'],
  [u'game', u'thing', u'streak', u'game', u'first-person', u'shooter']],
 [[u'game',
   u'graphic',
   u'one-player',
   u'story-line',
   u'game',
   u'people.<br',
   u'level',
   u'option',
   u'weapon',
   u'game',
   u'year']],
 [[u'game', u'platform'],
  [u'first-person', u'shooter', u'game', u'finger', u'fun'],
  [u'game'],
  [u'movement', u'character'],
  [u'character'],
  [u'game', u'matter', u'time']],
 [[u'game'],
  [u'tomorrow', u'world', u'goldeneye', u'love', u'goldeneye', u'time'],
  [u'multus', u'player', u'game', u'graphic'],
  [u'speed', u'boat', u'jump', u'ninjas', u'jaw', u'spy', u'moonraker'],
  [u'level', u'fun', u'environment'],
  [u'place', u'person', u'statue', u'park', u'game', u'today']],
 [[u'game', u'game'],
  [u'sure', u'player'],
  [u'player', u'fun', u'thing', u'person'],
  [u'game', u'level', u'use', u'level'],
  [u'multiplayer', u'shooter']],
 [[u'woman', u'plane', u'man'],
  [u'flight', u'sit', u'man', u'room', u'politician', u'wife', u'father'],
  [u'point',
   u'character',
   u'politician',
   u'room',
   u'plan',
   u'computer',
   u'savvy',
   u'hack',
   u'hotel'],
  [u'teenager',
   u'today',
   u'computer',
   u'computer',
   u'trouble',
   u'predicament',
   u'land',
   u'movie.<br',
   u'thing',
   u'plan',
   u'thing'],
  [u'plane', u'voice', u'passenger'],
  [u'sure', u'way'],
  [u'movie', u'episode', u'complexity'],
  [u'type', u'brain', u'time', u'intelligence', u'chair', u'acting', u'movie'],
  [u'muscle'],
  [u'problem', u'movie', u'studio', u'award', u'acting', u'bit'],
  [u'movie', u'job', u'time', u'film', u'movie', u'lack', u'depth', u'script'],
  [u'improvement',
   u'movie',
   u'past',
   u'horror',
   u'movie',
   u'decade',
   u'thing',
   u'movie',
   u'movie'],
  [u'hour', u'movie', u'movie', u'movie', u'length'],
  [u'waste', u'time', u'character', u'movie', u'movie'],
  [u'film', u'music', u'geek', u'movie', u'score'],
  [u'stuff', u'music'],
  [u'techno', u'stuff', u'title'],
  [u'soundtrack',
   u'title',
   u'it.<br',
   u'cinema',
   u'entertaining',
   u'hour',
   u'half']],
 [[u'game', u'stealth', u'hand'],
  [u'gameplay',
   u'extra',
   u'bullet',
   u'hole',
   u'wall',
   u'enemy',
   u'point',
   u'bullet',
   u'ton',
   u'motion',
   u'animation',
   u'enemy',
   u'instance',
   u'window',
   u'guard',
   u'swatting',
   u'list'],
  [u'licensed', u'conversion', u'shoe', u'spy'],
  [u'game', u'reason']],
 [[u'game'],
  [u'action', u'bullet'],
  [u'graphic', u'explosion'],
  [u'fun',
   u'playing',
   u'multiplayer',
   u'mode',
   u'shooting',
   u'friend',
   u'sibling',
   u'guns?<br']],
 [[u'video', u'game'],
  [u'game',
   u'single-player',
   u'mode',
   u'job',
   u'shoe',
   u'mission',
   u'objective',
   u'weapon',
   u'level',
   u'design'],
  [u'enemy', u'artificial', u'intelligence', u'today', u'standard', u'appeal'],
  [u'method',
   u'level',
   u'time',
   u'limit',
   u'title',
   u'them!<br',
   u'game',
   u'multiplayer',
   u'mode',
   u'player',
   u'game',
   u'sequel',
   u'opponent',
   u'smithereen',
   u'barrage']],
 [[u'game', u'cartoon', u'graphic', u'violence', u'level', u'person'],
  [u'level', u'hour', u'correspondence', u'helicopter']],
 [[u'opinion', u'think', u'video', u'game'],
  [u'game'],
  [u'player',
   u'multi-player',
   u'mode',
   u'brother',
   u'friend',
   u'game',
   u'time']],
 [[u'suit', u'hand', u'measurement'],
  [u'automobile', u'engineering', u'gadget', u'horse', u'hood'],
  [u'member', u'polo', u'club', u'restaurant', u'woman', u'world'],
  [u'pocket', u'watch', u'double', u'trusty', u'pen', u'caliber', u'gun'],
  [u'snow', u'ski', u'sea', u'diving', u'sky', u'dive', u'hair', u'place'],
  [u'world', u'renown', u'spy', u'son', u'boy', u'man', u'world'],
  [u'character',
   u'movie',
   u'industry',
   u'icon',
   u'subject',
   u'film',
   u'decade'],
  [u'man', u'role', u'role', u'debut', u'setting', u'title', u'party'],
  [u'market', u'time'],
  [u'dominance',
   u'sale',
   u'chart',
   u'testament',
   u'game',
   u'review',
   u'library',
   u'it.<br',
   u'face',
   u'time',
   u'game'],
  [u'mix', u'result'],
  [u'lies', u'ammunition', u'mix'],
  [u'case', u'reservation'],
  [u'movie', u'film', u'appeal', u'bond', u'movie'],
  [u'game',
   u'story.<br',
   u'game',
   u'first-person',
   u'shooter',
   u'order',
   u'brain',
   u'brawn'],
  [u'movie', u'story', u'path', u'movie', u'variation'],
  [u'plot', u'world', u'satellite', u'process', u'woman'],
  [u'wit', u'experience', u'mission', u'world']],
 [[u'friends.i',
   u'game',
   u'great,and',
   u'it.<br',
   u'game',
   u'player',
   u'mission',
   u'place',
   u'wasteland',
   u'city.my',
   u'favorite',
   u'tank.on',
   u'player',
   u'mode,you',
   u'friend',
   u'character',
   u'wish',
   u'area',
   u'ammo',
   u'weapon',
   u'hand',
   u'gun',
   u'rifle',
   u'laser',
   u'fist',
   u'player',
   u'mode,there',
   u'lot',
   u'place',
   u'game',
   u'suspenseful.because,you',
   u'opponent',
   u'is,and',
   u'door',
   u'going.<br',
   u'game',
   u'good!go',
   u'play']],
 [[u'game'],
  [u'game'],
  [u'game', u'mold', u'shooter'],
  [u'multi-player'],
  [u'mode', u'time'],
  [u'game', u'board', u'person', u'able'],
  [u'god', u'charry', u'difficulty', u'difficulty', u'game', u'game', u'game'],
  [u'capability', u'shooting', u'game', u'death', u'match', u'style'],
  [u'game'],
  [u'story', u'mystery', u'glitch', u'easter', u'egg', u'advantage'],
  [u'<br', u'shooting', u'game', u'time']],
 [[u'movie',
   u'tie-in',
   u'game',
   u'time',
   u'first-person',
   u'shooter',
   u'gaming-console',
   u'market'],
  [u'plot',
   u'game',
   u'problem',
   u'movie',
   u'year',
   u'game',
   u'release.<br',
   u'game',
   u'technique',
   u'style',
   u'game',
   u'player',
   u'variety',
   u'objective',
   u'challenge'],
  [u'difficulty',
   u'setting',
   u'environment',
   u'entertainment',
   u'difficulty',
   u'gamer.<br',
   u'introduction',
   u'hit-point',
   u'enemy',
   u'feature'],
  [u'boss', u'game', u'shot', u'head'],
  [u'type', u'realism', u'henchman', u'alarm', u'shootout'],
  [u'way', u'game', u'possibility', u'task'],
  [u'way',
   u'way',
   u'beating',
   u'level',
   u'strategy',
   u'guide',
   u'path',
   u'fun',
   u'day',
   u'away).<br',
   u'game',
   u'value',
   u'contribution',
   u'gaming',
   u'industry'],
  [u'dust',
   u'sucker',
   u'order',
   u'copy',
   u'trust',
   u'bond',
   u'fan',
   u'gamer',
   u'game',
   u'shoe',
   u'gaming',
   u'experience.<br',
   u'sister',
   u'game',
   u'control',
   u'weapon']],
 [[u'storytelling', u'level'],
  [u'game',
   u'today',
   u'strong.<br',
   u'game',
   u'month',
   u'playing',
   u'year',
   u'time',
   u'again.<br',
   u'level',
   u'game',
   u'date'],
  [u'level', u'video', u'game', u'sequence', u'time'],
  [u'first-person',
   u'shooting',
   u'usage',
   u'gadget',
   u'fan',
   u'fan',
   u'aspect',
   u'experience',
   u'game'],
  [u'game', u'action', u'gadget'],
  [u'game'],
  [u'dialogue', u'game', u'text', u'dialogue'],
  [u'it.<br', u'feature', u'game', u'way', u'story', u'movie', u'way'],
  [u'level', u'level', u'bomb', u'movie', u'storyline'],
  [u'thing', u'game'],
  [u'game', u'bond', u'experience']],
 [[u'thriller', u'minute', u'leaf', u'evil'],
  [u'evil', u'job', u'killer'],
  [u'performance', u'wedding'],
  [u'film', u'place', u'level', u'person', u'eye'],
  [u'action', u'scale', u'sweep', u'canvas', u'limitation'],
  [u'cinematography',
   u'course',
   u'camera',
   u'confine',
   u'passenger',
   u'jet',
   u'dialog',
   u'story'],
  [u'distraction', u'subplot', u'issue', u'heart', u'battle', u'character'],
  [u'focus', u'distraction', u'plot', u'action', u'thriller']],
 [[u'game', u'mission', u'fun', u'lot', u'action', u'fun', u'weapon'],
  [u'way',
   u'look',
   u'game',
   u'brosnan',
   u'character',
   u'game',
   u'actor',
   u'movie'],
  [u'way', u'time', u'game', u'game', u'movie', u'thing', u'movie'],
  [u'game',
   u'graphic',
   u'voice',
   u'actor',
   u'game',
   u'game',
   u'fun',
   u'score']],
 [[u'goldeneye', u'n64', u'release', u'game'],
  [u'episode', u'i-racer', u'time', u'game'],
  [u'adaptation', u'movie', u'adaptation'],
  [u'story'],
  [u'movie', u'itself.<br', u'graphic'],
  [u'movement'],
  [u'enemy', u'artificial', u'intelligence', u'game'],
  [u'alarm'],
  [u'camera', u'aspect', u'gameplay.<br', u'game'],
  [u'game'],
  [u'level', u'level', u'victory'],
  [u'playmate', u'license', u'music', u'sound'],
  [u'game'],
  [u'job']],
 [[u'quite', u'game', u'date'],
  [u'curve',
   u'friend',
   u'month',
   u'multiplayer',
   u'mode',
   u'exceptional.<br',
   u'degree',
   u'skill',
   u'button',
   u'challenge',
   u'agent',
   u'level',
   u'game']],
 [[u'goldeneye', u'mind'],
  [u'doubt', u'game', u'time'],
  [u'person', u'violence'],
  [u'antic', u'there.<br', u'fun'],
  [u'arsenal',
   u'weapon',
   u'level',
   u'movie',
   u'objective',
   u'swarm',
   u'guard'],
  [u'ton', u'level', u'skill'],
  [u'goldeneye', u'multiplayer', u'game'],
  [u'character', u'movie', u'villain', u'movie', u'guard', u'game'],
  [u'goldeneye', u'stuff', u'goldeneye', u'website'],
  [u'lover', u'game', u'time']],
 [[u'storyline', u'mission', u'level', u'difficulty']],
 [[u'section', u'message', u'film'],
  [u'riot', u'start', u'section', u'character', u'story'],
  [u'lot', u'setup', u'notch', u'performance', u'dialog', u'think', u'film'],
  [u'interpretation',
   u'film',
   u'mickey',
   u'prejudice',
   u'innuendo',
   u'town',
   u'gossip',
   u'tabloid',
   u'sensationalism'],
  [u'right'],
  [u'story']],
 [[u'tale', u'school', u'teacher', u'student-turned-actor'],
  [u'rest',
   u'film',
   u'deal',
   u'absurdity',
   u'setup',
   u'effect',
   u'town',
   u'fiancee',
   u'climaxe',
   u'everybody-loves-everybody',
   u'right',
   u'activist',
   u'youth',
   u'portrayal',
   u'man',
   u'struggle',
   u'depiction',
   u'life',
   u'trouble',
   u'rent',
   u'thing',
   u'book'],
  [u'film',
   u'piousness',
   u'speech',
   u'fun',
   u'culture',
   u'town',
   u'ignorance',
   u'fondness',
   u'comedy'],
  [u'satire', u'film', u'exuberance', u'farce'],
  [u'tongue-firmly-in-cheek'],
  [u'end',
   u'joke',
   u'locker',
   u'room',
   u'scene',
   u'comedy',
   u'breath',
   u'air.<br',
   u'game',
   u'support'],
  [u'award', u'winning', u'performance'],
  [u'<br', u'fact', u'mentality', u'townsfolk', u'fun'],
  [u'fluff', u'sanctimoniousness']],
 [[u'decision', u'sense'],
  [u'storyline', u'event'],
  [u'award',
   u'actor',
   u'person',
   u'award',
   u'school',
   u'teacher',
   u'outing',
   u'person.<br',
   u'course',
   u'person',
   u'closet',
   u'day'],
  [u'outing', u'person'],
  [u'life', u'outcome', u'individual'],
  [u'willingness', u'thing', u'life', u'happiness'],
  [u'joy', u'acceptance', u'life'],
  [u'movie', u'outcome', u'lot', u'life'],
  [u'acceptance', u'community', u'else.<br', u'performance'],
  [u'quote',
   u'use',
   u'music',
   u'stereo-type',
   u'world',
   u'tongue',
   u'cheek',
   u'humour'],
  [u'watch', u'mind', u'laugh', u'head']],
 [[u'opinion', u'movie'],
  [u'wedding', u'dress', u'tuxedo'],
  [u'quote', u'everybody'],
  [u'time']],
 [[u'turn', u'comedy'],
  [u'town', u'history', u'teacher', u'year', u'student', u'nominee'],
  [u'performance', u'film', u'soldier', u'thank', u'speech'],
  [u'floor', u'clue', u'guy', u'television'],
  [u'performance)so', u'idea', u'idea', u'school'],
  [u'parent', u'son'],
  [u'visit', u'town', u'reporter', u'article'],
  [u'moment', u'selleck', u'plant', u'kiss', u'right', u'lip'],
  [u'thing', u'sexuality', u'aggravation', u'frustration', u'fianc\xe9e'],
  [u'scene',
   u'bar',
   u'wedding',
   u'gown',
   u'middle',
   u'street',
   u'lack',
   u'man',
   u'world'],
  [u'movie', u'way', u'role'],
  [u'scene',
   u'film',
   u'record',
   u'guy',
   u'record',
   u'man',
   u'dance',
   u'disco',
   u'tune',
   u'memory',
   u'narrator',
   u'record',
   u'matter',
   u'dance',
   u'groove',
   u'thing',
   u'room'],
  [u'sincerity', u'gusto'],
  [u'film', u'character', u'study', u'man'],
  [u'film']],
 [[u'reason', u'room', u'suspense', u'movie', u'way', u'ploy'],
  [u'storyline', u'time', u'plane'],
  [u'plane', u'movie']],
 [[u'movie'],
  [u'movie', u'element', u'humor', u'music', u'scene'],
  [u'comedian', u'job', u'film', u'film'],
  [u'humor', u'film', u'exaggeration', u'scene', u'bit'],
  [u'film', u'element', u'humor', u'laugh']],
 [[u'premise', u'plot', u'line', u'screenplay'],
  [u'tad', u'story', u'man'],
  [u'target-audience', u'stuff', u'context', u'story'],
  [u'<br',
   u'facet',
   u'prowess',
   u'screenwriter',
   u'consideration',
   u'part.<br',
   u'mark']],
 [[u'movie'],
  [u'dance', u'scene', u'tape', u'scene'],
  [u'scene', u'school', u'graduation', u'ceremony'],
  [u'time', u'segment'],
  [u'girl', u'friend', u'ditz', u'dial', u'phone'],
  [u'film'],
  [u'time'],
  [u'bang', u'film'],
  [u'school', u'principle']],
 [[u'role'],
  [u'acceptance',
   u'speech',
   u'school',
   u'drama',
   u'teacher',
   u'film',
   u'version'],
  [u'character', u'reaction', u'scene', u'film', u'target', u'rumor'],
  [u'bride-to-be.<br',
   u'teacher',
   u'graduation',
   u'scene',
   u'person',
   u'way',
   u'life'],
  [u'farce', u'life'],
  [u'misdirection',
   u'wedding',
   u'scene',
   u'cop',
   u'out.<br',
   u'film',
   u'course',
   u'scene',
   u'how-to-be-a-real-man',
   u'tape',
   u'tape',
   u'actions.<br',
   u'hoot']],
 [[u'concept', u'director', u'muppet'],
  [u'star', u'soldier', u'thank', u'school', u'english', u'teacher'],
  [u'medium', u'spotlight', u'man', u'marriage', u'way'],
  [u'wedding', u'day'],
  [u'course',
   u'teacher',
   u'graduation',
   u'day',
   u'support',
   u'thing',
   u'school',
   u'head'],
  [u'surprise', u'nominee', u'member', u'bit', u'comedy']],
 [[u'english', u'school', u'city'],
  [u'town'],
  [u'acceptance',
   u'speech',
   u'role',
   u'man',
   u'lesson',
   u'teacher',
   u'school'],
  [u'ceremony'],
  [u'film', u'man', u'situation'],
  [u'man-who-did-not-realize-he-was-gay', u'touching'],
  [u'rest', u'cast', u'stitch', u'fianc\xe9', u'hand', u'audience'],
  [u'costume', u'setting', u'heartland'],
  [u'script', u'direction', u'production'],
  [u'look', u'population', u'film', u'asset', u'doubt'],
  [u'laugh', u'understanding', u'situation', u'time', u'film']],
 [[u'audience',
   u'film',
   u'teacher',
   u'television',
   u'student',
   u'straight',
   u'viewer'],
  [u'audience', u'film', u'movie', u'man'],
  [u'movie',
   u'tendency',
   u'disco',
   u'music',
   u'movie',
   u'dress',
   u'orientation'],
  [u'film', u'slap', u'man', u'stereotype', u'lacking', u'taste', u'culture'],
  [u'comedy',
   u'comedy',
   u'send',
   u'message',
   u'center',
   u'film',
   u'humor',
   u'character'],
  [u'self-denial', u'sex', u'life'],
  [u'engagement', u'teacher', u'school', u'series', u'sunset', u'talk'],
  [u'film',
   u'moment',
   u'attempt',
   u'dancing',
   u'instruction',
   u'tape',
   u'behavior'],
  [u'performer', u'film', u'moment'],
  [u'student', u'actor', u'clip', u'film', u'soldier'],
  [u'movie',
   u'theme',
   u'boy-meets-boy',
   u'romance',
   u'male-to-male',
   u'kiss',
   u'smooch'],
  [u'<br', u'injustice', u'prejudice'],
  [u'teaching', u'job', u'performance', u'credential', u'outrage'],
  [u'character', u'wedding', u'self-realization', u'place', u'dismissal'],
  [u'finale', u'audience', u'film'],
  [u'movie',
   u'man',
   u'slob',
   u'fan',
   u'football',
   u'station',
   u'wagon',
   u'country',
   u'music',
   u'food'],
  [u'performance',
   u'situation',
   u'stereotype',
   u'stereotype',
   u'dustbin',
   u'history']],
 [[u'comedy'],
  [u'person', u'cast', u'distinction'],
  [u'star',
   u'film',
   u'director',
   u'sensibility',
   u'wit',
   u'farce',
   u'encounter',
   u'frog']],
 [[u'performance', u'supermodel', u'girlfriend'],
  [u'actor'],
  [u'movie', u'actress', u'century', u'ridiculousness', u'plot'],
  [u'rest', u'movie', u'level', u'energy']],
 [[u'homosexuality', u'film', u'industry', u'society', u'day', u'ideology'],
  [u'example',
   u'melodrama',
   u'actor',
   u'congressman',
   u'suicide',
   u'lifestyle'],
  [u'movie', u'actor', u'teacher', u'closet', u'wedding', u'day'],
  [u'yesteryear',
   u'suicide',
   u'today',
   u'dictate',
   u'english',
   u'teacher',
   u'maced.<br',
   u'citizenship',
   u'garb',
   u'comedy'],
  [u'scenarist', u'endorse', u'honesty', u'policy', u'honesty', u'happiness'],
  [u'school', u'teacher', u'chill', u'closet', u'ditch', u'diet'],
  [u'movie', u'society', u'gay', u'homosexual', u'honesty', u'candor'],
  [u'tabloid',
   u'reporter',
   u'actor',
   u'commentary.<br',
   u'script',
   u'life',
   u'incident',
   u'oscar',
   u'tribute',
   u'school',
   u'teacher'],
  [u'style', u'type', u'actor', u'foot', u'soldier'],
  [u'live', u'television', u'audience'],
  [u'suspicion', u'paranoia', u'horror', u'medium', u'town', u'leaf'],
  [u'school',
   u'english',
   u'teacher',
   u'deviance',
   u'spark',
   u'medium',
   u'concern'],
  [u'reporter'],
  [u'witch-hunting', u'medium'],
  [u'charge', u'everybody', u'fianc\xe9e', u'mom'],
  [u'marriage', u'slip'],
  [u'bet',
   u'marriage',
   u'moment',
   u'result',
   u'camera.<br',
   u'resort',
   u'tape',
   u'man'],
  [u'effort'],
  [u'rag', u'homosexuality'],
  [u'course', u'confession'],
  [u'school', u'job', u'award', u'somebody'],
  [u'appeal',
   u'principal',
   u'support',
   u'community.<br',
   u'defect',
   u'script'],
  [u'character', u'standard'],
  [u'teacher', u'coach'],
  [u'everybody', u'school'],
  [u'bone', u'body'],
  [u'leaf'],
  [u'friend'],
  [u'defense'],
  [u'audience'],
  [u'screen', u'credit', u'comedy', u'teeter', u'tightrope'],
  [u'recruiting', u'movie'],
  [u'filmmaker', u'lifestyle'],
  [u'premise'],
  [u'flesh', u'community', u'response'],
  [u'filmmaker',
   u'rest',
   u'movie',
   u'town',
   u'difference.<br',
   u'scene',
   u'reporter',
   u'lip',
   u'lock'],
  [u'guy', u'movie', u'identity', u'crisis'],
  [u'movie', u'piece', u'propaganda', u'message'],
  [u'tv', u'equivalent', u'tv', u'sitcom'],
  [u'issue', u'person', u'day', u'century'],
  [u'comedy', u'intolerance', u'opportunity', u'cheer', u'jeer', u'queer']],
 [[u'fear', u'flight', u'foot', u'action', u'thriller'],
  [u'flight', u'battle', u'survival', u'chilling', u'assassination', u'plot'],
  [u'minute',
   u'tick',
   u'race',
   u'time',
   u'victim',
   u'reason',
   u'movie',
   u'chemistry',
   u'star',
   u'actor'],
  [u'example',
   u'scene',
   u'airport',
   u'comedy',
   u'person',
   u'hand',
   u'film',
   u'work'],
  [u'character', u'sort', u'way', u'job'],
  [u'thrill', u'way'],
  [u'scene', u'scene'],
  [u'buildup', u'pen', u'scene'],
  [u'change', u'victim'],
  [u'weezing']],
 [[u'movie', u'time'],
  [u'character',
   u'teacher',
   u'student',
   u'character',
   u'person',
   u'town',
   u'start'],
  [u'character'],
  [u'acting', u'cast'],
  [u'movie'],
  [u'love', u'movie', u'laugh'],
  [u'movie', u'time']],
 [[u'spoiler', u'spoiler', u'set-up', u'movie'],
  [u'acting', u'attempt', u'man'],
  [u'fiance', u'parent', u'job'],
  [u'spoiler', u'acting', u'family', u'acceptance', u'attempt'],
  [u'problem', u'end', u'fact'],
  [u'movie', u'set-up', u'movie'],
  [u'mannerism'],
  [u'pigeon', u'hole'],
  [u'music'],
  [u'end', u'movie', u'right', u'movie', u'course'],
  [u'rest'],
  [u'message']],
 [[u'laugh'],
  [u'role',
   u'movie',
   u'chuckle',
   u'man',
   u'matter',
   u'scene',
   u'kiss',
   u'man',
   u'cassette',
   u'post-(almost-)wedding',
   u'scene',
   u'scene',
   u'movie.<br',
   u'scene',
   u'bit',
   u'excuse',
   u'movie']],
 [[u'cousin', u'wedding', u'scene'],
  [u'poke', u'fun', u'message', u'movie', u'climax', u'movie'],
  [u'humor', u'bit', u'timeline'],
  [u'moment', u'kiss', u'scene', u'wedding', u'scene', u'principal'],
  [u'surprise', u'fan', u'fun']],
 [[u'comedy', u'performance'],
  [u'thought'],
  [u'wedding', u'family', u'friend', u'wife'],
  [u'comedy', u'lot', u'laugh', u'giggle'],
  [u'comedy', u'performance', u'guy']],
 [[u'comedy', u'premise'],
  [u'mission',
   u'entertaining.<br',
   u'comedy',
   u'film',
   u'comedy',
   u'humor',
   u'veteran',
   u'turn'],
  [u'form', u'film', u'expected', u'square', u'man', u'type'],
  [u'humor', u'sense', u'timing'],
  [u'cast',
   u'film',
   u'successful.<br',
   u'film',
   u'theme',
   u'sort',
   u'agenda',
   u'point',
   u'fact',
   u'film',
   u'film',
   u'viewer',
   u'think',
   u'byproduct',
   u'work',
   u'cast',
   u'professional'],
  [u'tongue-in-cheek', u'moment']],
 [[u'student',
   u'film',
   u'soldier',
   u'thank',
   u'acceptance',
   u'speech',
   u'outing'],
  [u'film', u'aftermath', u'reporter', u'village', u'love', u'movie'],
  [u'moment', u'grin', u'face'],
  [u'film']],
 [[u'movie',
   u'laugh',
   u'department.<br',
   u'high-school',
   u'teacher',
   u'teacher',
   u'day',
   u'town',
   u'nomination',
   u'resident'],
  [u'soldier', u'thank', u'teacher', u'inspiration'],
  [u'set', u'mishap', u'fashion.<br', u'stereotype'],
  [u'mother'],
  [u'hoot', u'principal.<br', u'screenwriter', u'balance'],
  [u'stereotype', u'way', u'midwesterner', u'audience'],
  [u'inoffensive', u'step', u'year']],
 [[u'movie', u'film'],
  [u'theatre'],
  [u'problem', u'pace'],
  [u'majority', u'movie', u'kind'],
  [u'relationship', u'character'],
  [u'plot', u'line'],
  [u'movie', u'it.<br', u'conclusion', u'good', u'character', u'plot']],
 [[u'theme', u'gangster', u'film', u'genre', u'rise', u'fall'],
  [u'rise',
   u'individual',
   u'obscurity',
   u'height',
   u'grace',
   u'excesses.<br',
   u'feature',
   u'writer',
   u'start'],
  [u'element',
   u'director',
   u'influence',
   u'film',
   u'originality',
   u'plot',
   u'development.<br',
   u'development',
   u'movie',
   u'feature'],
  [u'performance'],
  [u'porn',
   u'veteran',
   u'film',
   u'comedy',
   u'tragedy',
   u'result',
   u'film',
   u'matter',
   u'conservatism']],
 [[u'film', u'creator'],
  [u'story', u'hotel', u'worker'],
  [u'grandmother', u'eye', u'flight'],
  [u'plane'],
  [u'movie', u'person', u'thrilling', u'film', u'pant'],
  [u'example', u'bone', u'production'],
  [u'actor', u'girl', u'film'],
  [u'actor', u'bone', u'acting', u'character', u'film', u'face', u'eye'],
  [u'job', u'film']],
 [[u'actor', u'character', u'lead', u'actor', u'film'],
  [u'performance', u'director'],
  [u'film', u'accuracy', u'disco', u'scene', u'film', u'scene'],
  [u'moviegoer', u'film', u'doubt', u'film'],
  [u'opening', u'tracking', u'shot', u'film'],
  [u'editing'],
  [u'editing', u'nomination', u'hunting', u'film'],
  [u'scene', u'film', u'firecracker'],
  [u'butterfly', u'stomach', u'scene'],
  [u'film', u'time', u'reaction', u'scene'],
  [u'impact', u'tv', u'theater', u'sound'],
  [u'shame', u'person', u'movie', u'theatrical', u'run', u'way'],
  [u'use', u'widescreen', u'tv', u'tape'],
  [u'film'],
  [u'music',
   u'set',
   u'costume',
   u'photography',
   u'character',
   u'sex',
   u'violence',
   u'happiness',
   u'heartbreak',
   u'guy',
   u'love',
   u'filmmaking']],
 [[u'film'],
  [u'poet', u'poet'],
  [u'genius', u'touch'],
  [u'me).<br', u'reason', u'night', u'person', u'standard']],
 [[u'actor', u'dialog', u'drama', u'comedy', u'writing', u'directing'],
  [u'entertaining', u'stimulating'],
  [u'role', u'job'],
  [u'performance'],
  [u'element', u'film']],
 [[u'companion', u'piece', u'documentary'],
  [u'praise',
   u'star',
   u'mother',
   u'man',
   u'identity',
   u'pornstar',
   u'getup',
   u'wife',
   u'slut'],
  [u'year',
   u'eve',
   u'bash',
   u'chance',
   u'life',
   u'donut',
   u'shop',
   u'robbery',
   u'scene',
   u'movie',
   u'shot'],
  [u'movie', u'power', u'form'],
  [u'character', u'spiral', u'rebound', u'return', u'life']],
 [[u'instinct',
   u'pornographer',
   u'person',
   u'depth',
   u'anderson',
   u'character'],
  [u'soundtrack'],
  [u'song', u'scene', u'movie', u'again.<br', u'price', u'admission']],
 [[u'stroke', u'genius', u'writer', u'movie']],
 [[u'masterpiece', u'story', u'flair', u'direction', u'director'],
  [u'film', u'cast', u'performance'],
  [u'matter', u'care', u'person'],
  [u'movie', u'impact']],
 [[u'matter', u'prude', u'mature', u'script'],
  [u'evidence', u'epic', u'masterpiece'],
  [u'director', u'movie-star'],
  [u'movie', u'time']],
 [[u'potential', u'film'],
  [u'film'],
  [u'picture', u'film', u'award', u'good', u'hunting'],
  [u'picture',
   u'category',
   u'movie',
   u'categories.<br',
   u'film',
   u'story',
   u'performance',
   u'year',
   u'barman',
   u'attention',
   u'redeeming',
   u'acting',
   u'director',
   u'porn',
   u'film'],
  [u'gift', u'world', u'porn', u'movie'],
  [u'change', u'success'],
  [u'character',
   u'parallel',
   u'story',
   u'actress',
   u'roller',
   u'shoes.<br',
   u'film',
   u'hand'],
  [u'film',
   u'execution',
   u'screenplay',
   u'soundtrack',
   u'character',
   u'importance',
   u'context'],
  [u'feeling',
   u'weakness',
   u'fear',
   u'emotion',
   u'masterpiece',
   u'cinema.<br',
   u'picture',
   u'cinema'],
  [u'plot', u'impression', u'story', u'high', u'thing', u'life'],
  [u'portrait', u'end', u'age', u'high'],
  [u'film', u'masterpiece']],
 [[u'performance', u'cast', u'job'],
  [u'film', u'porn', u'industry', u'hand', u'premise'],
  [u'hand',
   u'scene',
   u'drug',
   u'use',
   u'character',
   u'lifestyle',
   u'overkill',
   u'department'],
  [u'deal', u'film', u'work'],
  [u'family'],
  [u'soundtrack', u'feel', u'period', u'time', u'disco', u'rage'],
  [u'disco',
   u'favorite',
   u'song',
   u'well.<br',
   u'story',
   u'man',
   u'porn',
   u'industry'],
  [u'change', u'film', u'star'],
  [u'director', u'film', u'work', u'pornography', u'drug', u'road'],
  [u'focus', u'character', u'subplot', u'character', u'trial', u'life']],
 [[u'thriller', u'night'],
  [u'acting', u'villain', u'action.<br', u'movie', u'movie', u'plane'],
  [u'dialog.<br', u'pg-13', u'movie', u'ground', u'director'],
  [u'violence', u'thriller.<br', u'movie', u'point', u'cast'],
  [u'film', u'actor', u'dialog', u'thrill'],
  [u'day'],
  [u'cast', u'film'],
  [u'movie']],
 [[u'drama', u'fact', u'style', u'story', u'entertaining', u'time'],
  [u'effect', u'life', u'folk', u'consequence', u'action']],
 [[u'time', u'movie'],
  [u'shock', u'movie', u'heart'],
  [u'story', u'actor', u'humor'],
  [u'thing',
   u'god.)<br',
   u'viewing',
   u'commentary',
   u'guy',
   u'movie',
   u'movie'],
  [u'film',
   u'ripoff',
   u's.<br',
   u'recomend',
   u'film',
   u'anybody',
   u'content',
   u'film(porn.)<br']],
 [[u'video',
   u'porn',
   u'film',
   u'industry',
   u'film',
   u'consequence',
   u'genre',
   u'sex',
   u'tape'],
  [u'porn', u'industry', u'character', u'way'],
  [u'director',
   u'dream',
   u'film',
   u'viewer',
   u'suspense',
   u'story',
   u'time',
   u'beauty\x85',
   u'cock',
   u'tit'],
  [u'star', u'film'],
  [u'story',
   u'porn',
   u'industry',
   u'begins.<br',
   u'film',
   u'sequence',
   u'night',
   u'club',
   u'person',
   u'life',
   u'porn',
   u'industry',
   u'routine'],
  [u'porn', u'industry', u'party', u'story', u'story'],
  [u'success',
   u'star',
   u'lot',
   u'prize',
   u'dream',
   u'series',
   u'film',
   u'character'],
  [u'sort', u'exploitation', u'film', u'success', u'film'],
  [u'end', u'ex', u'pal'],
  [u'excess',
   u'person',
   u'dysfunction',
   u'porn',
   u'star',
   u'film',
   u'life',
   u'total',
   u'success',
   u'everybody',
   u'time',
   u'problem',
   u'society',
   u'look',
   u'industry',
   u'period',
   u'excess'],
  [u'decadence',
   u'music',
   u'industry',
   u'sequence',
   u'way',
   u'thing',
   u'friend'],
  [u'experience', u'pal', u'solution', u'character', u'sort', u'summary'],
  [u'cast', u'performance'],
  [u'performance',
   u'character',
   u'character',
   u'moments.<br',
   u'style',
   u'view',
   u'porn',
   u'industry',
   u'magnolium',
   u'favourite',
   u'favourite',
   u'film',
   u'film',
   u'goodfella',
   u'casino']],
 [[u'picture', u'nominee', u'viewing'],
  [u'director',
   u'influence',
   u'chance',
   u'film',
   u'list',
   u'himself.<br',
   u'note',
   u'memory',
   u'movie',
   u'character'],
  [u'performance', u'year', u'category']],
 [[u'sex', u'film', u'year'],
  [u'splash', u'credit'],
  [u'film', u'movie', u'merit'],
  [u'representation',
   u'pursuit',
   u'loss',
   u'thing',
   u'box',
   u'confessional',
   u'year',
   u'tale'],
  [u'kid', u'life'],
  [u'room', u'americana'],
  [u'dream', u'potential', u'gift'],
  [u'gent', u'attention', u'eyebrow', u'adult', u'film', u'industry'],
  [u'film', u'talent', u'movie.<br', u'deep-throat', u'member', u'public'],
  [u'fortune', u'acquaintance', u'bevy', u'porn', u'celebs'],
  [u'friend', u'co-worker', u'family', u'picnic'],
  [u'way'],
  [u'backslide'],
  [u'<br', u'epic'],
  [u'frame',
   u'picture',
   u'character',
   u'dialogue',
   u'live',
   u'fade',
   u'soundtrack']],
 [[u'town', u'kid', u'working', u'city', u'star', u'spiral', u'control'],
  [u'rise', u'fame', u'fall', u'fame', u'rise'],
  [u'cast', u'actor', u'director', u'movie'],
  [u'director'],
  [u'moment', u'movie', u'moment', u'movie'],
  [u'scene'],
  [u'story', u'movie'],
  [u'perfection'],
  [u'scene', u'movie', u'music', u'acting', u'cinematography'],
  [u'thank', u'god', u'fan', u'watch', u'movie']],
 [[u'doubt', u'film'],
  [u'rush', u'romance', u'epic'],
  [u'fact', u'nomination'],
  [u'filmmaker', u'year', u'film', u'pulp', u'fiction'],
  [u'film'],
  [u'pulp']],
 [[u'protagonist',
   u'metaphor',
   u'celebrity',
   u'decade',
   u'past',
   u'rise',
   u'pornography',
   u'abundance',
   u'youth'],
  [u'lead',
   u'character',
   u'trait',
   u'assortment',
   u'actor',
   u'affair',
   u'celebrity',
   u'press'],
  [u'sort', u'tale'],
  [u'dream', u'asset', u'body'],
  [u'californian', u'star'],
  [u'talent', u'individual', u'planet', u'gift'],
  [u'mother', u'home', u'adult', u'film', u'director'],
  [u'porn', u'star', u'actor', u'film'],
  [u'success', u'alias', u'porn', u'star', u'life', u'story'],
  [u'movie',
   u'pornography',
   u'target',
   u'audience',
   u'cinema-goers.<br',
   u'film',
   u'place',
   u'era',
   u'pornography',
   u'filmmaker',
   u'point',
   u'feature',
   u'story',
   u'atmosphere'],
  [u'way',
   u'film',
   u'director',
   u'implement',
   u'approach',
   u'project',
   u'movie',
   u'period',
   u'history',
   u'smut'],
  [u'style', u'reliving', u'era'],
  [u'moment', u'time', u'dealt', u'film.<br', u'set'],
  [u'time', u'role'],
  [u'film', u'role', u'career'],
  [u'title', u'film'],
  [u'battle',
   u'title',
   u'time',
   u'word',
   u'boogie',
   u'night',
   u'movie',
   u'mouth',
   u'character.<br',
   u'casting',
   u'film',
   u'aspect'],
  [u'regular', u'cast', u'first-timer'],
  [u'star'],
  [u'movie', u'border', u'role'],
  [u'career', u'pursuit', u'trait', u'character'],
  [u'role', u'audience', u'control', u'scene'],
  [u'star', u'backdrop', u'sign', u'thing', u'symbolism'],
  [u'scene', u'minute', u'tracking', u'shot', u'night', u'club', u'character'],
  [u'style', u'vein', u'shot'],
  [u'reference',
   u'shot',
   u'closing',
   u'mirror',
   u'speech',
   u'tracking',
   u'nightclub',
   u'scene',
   u'goodfella'],
  [u'director', u'story', u'direction', u'age'],
  [u'feature', u'film', u'effort', u'love', u'account'],
  [u'film', u'extreme'],
  [u'content', u'verge', u'pornography', u'trash'],
  [u'masterpiece'],
  [u'film', u'project', u'decade']],
 [[u'pornography'],
  [u'film', u'story', u'kingpin', u'busboy', u'nightclub'],
  [u'customer', u'pornographer', u'starlet'],
  [u'gifted.<br', u'film', u'pseudonym'],
  [u'porno', u'star', u'pun'],
  [u'bit', u'violence'],
  [u'kind',
   u'approach',
   u'degradation',
   u'pornography',
   u'medium',
   u'pornos.<br',
   u'lot',
   u'character'],
  [u'role', u'working', u'film', u'wife', u'sex', u'everybody'],
  [u'role', u'salesman'],
  [u'performance']],
 [[u'approach'],
  [u'pornography', u'aspect', u'person', u'motion', u'picture'],
  [u'sceptic', u'time', u'time'],
  [u'magnolia', u'reason', u'film', u'faith', u'industry', u'today'],
  [u'consumer'],
  [u'artist',
   u'today',
   u'struggle',
   u'recognition',
   u'film',
   u'mainstream',
   u'person',
   u'celebrity',
   u'stuff',
   u'sell-out',
   u'spears.<br',
   u'today',
   u'number',
   u'sale',
   u'revenue',
   u'sale',
   u'return',
   u'magic',
   u'magic',
   u'language',
   u'cinema',
   u'magic']],
 [[u'hotel', u'receptionist', u'eye', u'flight'],
  [u'plane', u'board', u'plane', u'coincidence'],
  [u'phone',
   u'hotel',
   u'father',
   u'<br',
   u'horror',
   u'film',
   u'serpent',
   u'person',
   u'trilogy',
   u'teen',
   u'thriller',
   u'departure',
   u'sort',
   u'film'],
  [u'script',
   u'thriller',
   u'minute',
   u'length',
   u'point',
   u'sort',
   u'film',
   u'taught',
   u'plot',
   u'direction',
   u'lot',
   u'subplot'],
  [u'plot', u'film', u'moment', u'term', u'hell', u'film'],
  [u'character',
   u'play',
   u'serial',
   u'killer',
   u'villain',
   u'cold',
   u'job',
   u'type',
   u'mentality'],
  [u'point', u'film', u'fashion'],
  [u'films.<br',
   u'taught',
   u'thriller',
   u'cast',
   u'action',
   u'gripping',
   u'plot'],
  [u'action',
   u'tension',
   u'film',
   u'hostage',
   u'plane',
   u'film',
   u'father',
   u'house',
   u'bit'],
  [u'mention'],
  [u'hand',
   u'villain',
   u'live',
   u'change',
   u'expectation',
   u'budget',
   u'film',
   u'production',
   u'value'],
  [u'film', u'husband', u'wife', u'lead', u'maker', u'lead'],
  [u'eye', u'candy', u'total', u'babe', u'film'],
  [u'performance', u'too.<br', u'tension', u'thriller'],
  [u'recommendation', u'stuff']],
 [[u'porn', u'person', u'film'],
  [u'film',
   u'porn',
   u'industry',
   u'half',
   u'character',
   u'development',
   u'situation',
   u'character'],
  [u'actor', u'role'],
  [u'sex', u'scene', u'course', u'character', u'hype', u'porn', u'film'],
  [u'film']],
 [[u'brilliance', u'story', u'message', u'viewer', u'audience'],
  [u'story',
   u'deal',
   u'self',
   u'realization',
   u'determination',
   u'scale',
   u'camera',
   u'angle'],
  [u'scene', u'process', u'character', u'development']],
 [[u'film'],
  [u'matter'],
  [u'aclaim',
   u'film',
   u'viewer',
   u'critic',
   u'film',
   u'making.<br',
   u'direction',
   u'film',
   u'surpass',
   u'level',
   u'brilliance.there',
   u'scene',
   u'movie'],
  [u'character', u'touch'],
  [u'direction',
   u'lot',
   u'films.<br',
   u'film',
   u'individual',
   u'story',
   u'many.it',
   u'character',
   u'study',
   u'person',
   u'layer',
   u'industry',
   u'dream'],
  [u'story', u'beginning', u'film', u'believe', u'hour', u'notice'],
  [u'kind', u'movie', u'rating'],
  [u'character', u'study', u'use', u'music', u'film'],
  [u'year',
   u'movie',
   u'music',
   u'story',
   u'movie.there',
   u'flawlessness',
   u'reynold',
   u'performance',
   u'person'],
  [u'person',
   u'role',
   u'scene',
   u'end.<br',
   u'reviewer',
   u'movie',
   u'everybody']],
 [[u'soul', u'matter', u'smile', u'respect'],
  [u'character',
   u'development',
   u'performance',
   u'stage',
   u'improvisation',
   u'cinema',
   u'verite',
   u'style.<br',
   u'plot',
   u'theme',
   u'grade',
   u'crisis',
   u'perspective.<br',
   u'sociologist',
   u'dream',
   u'case',
   u'study',
   u'film',
   u'truth',
   u'self-esteem',
   u'love',
   u'lack',
   u'deficit',
   u'manifestation',
   u'adulthood',
   u'need'],
  [u'issue',
   u'untouchable',
   u'milieu',
   u'course',
   u'film',
   u'number',
   u'level'],
  [u'loop',
   u'milieu',
   u'voyeur',
   u'film',
   u'<br',
   u'matter',
   u'character',
   u'rarity']],
 [[u'point', u'washed-up', u'performance', u'film'],
  [u'actor', u'love', u'person', u'adult', u'industry', u'aspect', u'film'],
  [u'story', u'character', u'battle'],
  [u'film', u'person']],
 [[u'review', u'testament', u'money', u'accomplishment'],
  [u'band', u'imbd', u'member'],
  [u'script', u'direction'],
  [u'movie', u'crown']],
 [[u'porn', u'industry', u'year', u'sex', u'drug', u'disco'],
  [u'chance',
   u'meeting',
   u'pornography',
   u'director',
   u'career',
   u'adult',
   u'actor',
   u'time'],
  [u'character', u'porn', u'actor'],
  [u'success.<br',
   u'theme',
   u'film',
   u'genre',
   u'pornography',
   u'drug',
   u'sex',
   u'betrayal',
   u'violence',
   u'music'],
  [u'sex',
   u'scene',
   u'place',
   u'screen.<br',
   u'film',
   u'cocaine',
   u'film',
   u'setting',
   u'popularity',
   u'drug',
   u'time',
   u'film'],
  [u'example', u'party', u'girl', u'blood', u'nose', u'fit'],
  [u'film',
   u'scene',
   u'point',
   u'darkness',
   u'music',
   u'scene',
   u'disco',
   u'scene',
   u'singing',
   u'music',
   u'career'],
  [u'soundtrack', u'tune', u'emotion', u'boy', u'sound', u'experience'],
  [u'standout',
   u'scene',
   u'film',
   u'music',
   u'drug',
   u'dealer',
   u'house',
   u'order',
   u'cash',
   u'drug',
   u'sister',
   u'background',
   u'intensity',
   u'scene',
   u'music',
   u'depth',
   u'scene'],
  [u'kind',
   u'scene',
   u'film',
   u'standout',
   u'performance',
   u'film',
   u'director'],
  [u'scene',
   u'attack',
   u'guy',
   u'movie',
   u'shock',
   u'audience',
   u'point',
   u'content'],
  [u'performance', u'performance', u'career.<br', u'film', u'theme', u'way'],
  [u'approach', u'character', u'time'],
  [u'thing', u'sign', u'character', u'situation', u'film'],
  [u'level',
   u'entertainment',
   u'film',
   u'offers.<br',
   u'box-office',
   u'success',
   u'cinema'],
  [u'quality', u'popularity', u'film'],
  [u'film',
   u'parable',
   u'situation',
   u'end',
   u'film',
   u'morality',
   u'tale',
   u'mind',
   u'day']],
 [[u'example', u'filmmaker'],
  [u'sure',
   u'load',
   u'quality',
   u'time',
   u'clasic',
   u'suit',
   u'generation',
   u'study',
   u'half-heartedly.<br',
   u'film',
   u'story',
   u'docudrama',
   u'porn',
   u'industry-and',
   u'industry'],
  [u'half', u'brillant', u'filmmaker', u'polyester', u'rubber'],
  [u'face', u'kind', u'cinema', u'film', u'great', u'stroke', u'genius'],
  [u'story', u'character', u'hate', u'impact'],
  [u'actor'],
  [u'performance',
   u'balance',
   u'timing',
   u'character',
   u'emotion',
   u'sucker',
   u'line',
   u'movie'],
  [u'look',
   u'film',
   u'colour',
   u'style',
   u'term',
   u'perfection',
   u'craft',
   u'look',
   u'edge',
   u'shot',
   u'year',
   u'party',
   u'sequence.<br',
   u'music',
   u'film',
   u'character'],
  [u'time',
   u'sorrow',
   u'grief',
   u'fun',
   u'dancing',
   u'time',
   u'spirit',
   u'performances.<br',
   u'character',
   u'porn',
   u'director',
   u'burden',
   u'future',
   u'film',
   u'genre'],
  [u'transition', u'film', u'tape'],
  [u'blend', u'innocense', u'bravado', u'character'],
  [u'individual',
   u'attention',
   u'performance',
   u'film',
   u'rent',
   u'boogie',
   u'night',
   u'difference',
   u'script',
   u'mother',
   u'torment',
   u'anguish',
   u'life',
   u'art'],
  [u'eye-candy', u'scene'],
  [u'character',
   u'life',
   u'actor',
   u'picture',
   u'part.<br',
   u'film',
   u'look',
   u'lifestyle',
   u'fast-pace',
   u'excuse',
   u'audience',
   u'trip'],
  [u'movie', u'example', u'film', u'director', u'vision', u'art', u'film']],
 [[u'movie',
   u'doubt',
   u're-make',
   u'lot',
   u'person',
   u'fan',
   u're-make',
   u'tonight',
   u'child',
   u'mean',
   u'movie',
   u'child',
   u'half',
   u'chance',
   u'movie',
   u'babysitter',
   u'sound',
   u'run',
   u'bush',
   u'mind',
   u'thing',
   u'movie',
   u'suspense',
   u'away',
   u'person',
   u'crap',
   u'movie',
   u'teenager',
   u'thing',
   u'movie',
   u'adult',
   u'age']],
 [[u'trailer', u'movie'],
  [u'film', u'success', u'environment', u'house'],
  [u'thing', u'sensor', u'light', u'feeling'],
  [u'shadow', u'feeling', u'house', u'matter', u'horror', u'film', u'film'],
  [u'acting'],
  [u'character', u'teen', u'dramas'],
  [u'end', u'film', u'film']],
 [[u'relief', u'thriller'],
  [u'girl',
   u'wedding',
   u'crasher',
   u'notebook',
   u'screen',
   u'time',
   u'suspense',
   u'thriller',
   u'horror',
   u'film',
   u'director',
   u'scream',
   u'movie'],
  [u'yuppie-type', u'audience', u'evil'],
  [u'plane', u'sequence', u'minute', u'onboard'],
  [u'plot', u'device', u'pent', u'frustration', u'bit'],
  [u'scene',
   u'hotel',
   u'guest',
   u'airline',
   u'passenger',
   u'injury',
   u'hotel'],
  [u'strength', u'film', u'character', u'development', u'game', u'lead'],
  [u'screen', u'suspense', u'thriller', u'finale']],
 [[u'house', u'babysitter', u'phone'],
  [u'fear', u'factor'],
  [u'cell', u'phone', u'task', u'child'],
  [u'house', u'wood', u'glass', u'masterpiece'],
  [u'babysitter',
   u'mode',
   u'survival',
   u'fear',
   u'stranger',
   u'end',
   u'phone.<br'],
  [u'voice', u'stranger', u'phone', u'stranger'],
  [u'kudo', u'music']],
 [[u'person',
   u'film',
   u'teen',
   u'horror',
   u'movie',
   u'horror',
   u'movie',
   u'girl'],
  [u'film', u'scream', u'audience', u'film', u'film'],
  [u'thing', u'bit', u'storyline'],
  [u'acting', u'scenery', u'storyline', u'month']],
 [[u'house', u'choice'],
  [u'reviews', u'movie', u'memory', u'teen'],
  [u'movie',
   u'story',
   u'today',
   u'teen',
   u'babysitter',
   u'trouble',
   u'cell',
   u'phone',
   u'minute',
   u'job'],
  [u'story', u'line'],
  [u'babysitter', u'house', u'crack'],
  [u'killer', u'girl'],
  [u'situation']],
 [[u'mile', u'scene', u'grizzly', u'murder', u'town', u'night'],
  [u'child', u'home', u'door', u'alarm'],
  [u'series', u'phone', u'stranger', u'child', u'panic'],
  [u'polouse', u'job', u'16-year-old', u'nightmare'],
  [u'star', u'face'],
  [u'day', u'idea', u'hell', u'house'],
  [u'size', u'house'],
  [u'movie', u'house'],
  [u'house',
   u'movie',
   u'house',
   u'size.<br',
   u'face',
   u'smile',
   u'movie',
   u'lead',
   u'actress',
   u'experience'],
  [u'girl', u'role', u'movie', u'it.<br', u'movie'],
  [u'tog'],
  [u'movie.<br', u'movie']],
 [[u'movie'],
  [u'fear'],
  [u'time', u'movie', u'bedroom'],
  [u'trick', u'bag'],
  [u'nut'],
  [u'alarm'],
  [u'thing', u'babysitting', u'past']],
 [[u'pg-13', u'thriller', u'babysitter', u'prank', u'mansion', u'film'],
  [u'element',
   u'suspense',
   u'eye',
   u'candy',
   u'character',
   u'film',
   u'summer'],
  [u'performance',
   u'flick',
   u'skip',
   u'movie',
   u'film',
   u'lifetime',
   u'lifetime',
   u'somethin']],
 [[u'prank'],
  [u'girl', u'movie.<br', u'atmosphere', u'sound'],
  [u'role'],
  [u'potential', u'actress'],
  [u'thriller', u'idea'],
  [u'thriller', u'title']],
 [[u'movie'],
  [u'television', u'trailer'],
  [u'trailer', u'film'],
  [u'day', u'movie', u'film'],
  [u'lot', u'treatment', u'movie', u'negativity'],
  [u'actress',
   u'job',
   u'movie',
   u'hater',
   u'movie',
   u'fun',
   u'teeny',
   u'bopper',
   u'popcorn',
   u'flick'],
  [u'lot', u'lot', u'slasher']],
 [[u'review', u'movie', u'friend', u'love'],
  [u'house', u'garage'],
  [u'acting'],
  [u'story'],
  [u'runner', u'track', u'team'],
  [u'lol.<br', u'movie'],
  [u'masterpiece'],
  [u'trust', u'movie'],
  [u'movie', u'critic']],
 [[u'teenager', u'fun', u'lot', u'thing', u'beginning'],
  [u'line', u'school'],
  [u'scene', u'sign', u'episode'],
  [u'story', u'cast', u'time', u'movie'],
  [u'monster',
   u'white',
   u'corner',
   u'doll',
   u'thing',
   u'movie',
   u'scarier',
   u'thing'],
  [u'movie', u'time', u'life', u'idea', u'murderer', u'house'],
  [u'flaw', u'movie', u'movie'],
  [u'horror',
   u'movie',
   u'key',
   u'car',
   u'start',
   u'shadow',
   u'corner',
   u'corner',
   u'stair',
   u'suspense',
   u'body',
   u'scene',
   u'dream',
   u'scene'],
  [u'seeing.<br', u'way', u'review', u'thing', u'spoiler']],
 [[u'flaw', u'movie', u'thing', u'movie'],
  [u'movie'],
  [u'time', u'time', u'feeling']],
 [[u'kind',
   u'movie',
   u'kind',
   u'director',
   u'branding',
   u'indication',
   u'film-goer',
   u'fact',
   u'undemanding',
   u'package',
   u'minute',
   u'charm',
   u'indication',
   u'craft',
   u'box',
   u'office',
   u'fare'],
  [u'fact',
   u'kind',
   u'movie',
   u'entertainment',
   u'challenge',
   u'viewer.<br',
   u'feeling',
   u'plot',
   u'terrorist',
   u'subplot',
   u'motivation',
   u'character',
   u'section',
   u'tv',
   u'movie',
   u'feel'],
  [u'element',
   u'suspense',
   u'echo',
   u'phone',
   u'idea',
   u'crisis',
   u'public.<br',
   u'film',
   u'person',
   u'airline',
   u'seat',
   u'character',
   u'script'],
  [u'reason', u'film'],
  [u'dialogue',
   u'sort',
   u'rib',
   u'type',
   u'dimension',
   u'battle',
   u'male',
   u'logic',
   u"sensitivity'.<br",
   u'portion',
   u'film',
   u'scream',
   u'style',
   u'man-chases-girl-with-knife'],
  [u'revelation',
   u"'s",
   u'treatment',
   u'appearance',
   u'film',
   u'trooper',
   u'version',
   u'haul',
   u'fun']],
 [[u'half', u'movie'],
  [u'scene', u'alarm', u'story'],
  [u'house', u'area', u'setting', u'type', u'movie', u'quality'],
  [u'arrangement',
   u'entry',
   u'way',
   u'house',
   u'outside',
   u'section',
   u'phone'],
  [u'time',
   u'noise',
   u'house',
   u'poker',
   u'touch',
   u'plot',
   u'hole',
   u'movie',
   u'hole',
   u'mystery'],
  [u'attention', u'taste', u'mouth'],
  [u'minute',
   u'friend',
   u'situation',
   u'taste',
   u'personality',
   u'example',
   u'scene',
   u'debate',
   u'kid',
   u'scene']],
 [[u'horror', u'fan'],
  [u'horror', u'remake', u'attempts.<br', u'sister'],
  [u'moment', u'tension', u'role', u'actress', u'attention'],
  [u'<br', u'film']],
 [[u'horror', u'movie', u'buff', u'similarity', u'movie', u'genre', u'movie'],
  [u'story', u'line', u'moment', u'role', u'anyway<br', u'rating', u'movie'],
  [u'lot', u'movie', u'working', u'video', u'store', u'person'],
  [u'cop',
   u'girl',
   u'bathroom',
   u'sleep',
   u'tequila',
   u'child',
   u'reaction',
   u'hope',
   u'<br',
   u'person']],
 [[u'remake.<br', u'job'],
  [u'fact', u'horror', u'flick', u'year', u'vulgarity', u'film'],
  [u'time', u'fingernail', u'film', u'price', u'ticket'],
  [u'girl', u'world', u'determine'],
  [u'<br'],
  [u'house', u'kid', u'movie'],
  [u'blood', u'fun']],
 [[u'shoot', u'blood', u'horror', u'movie', u'way', u'hill', u'eye', u'place'],
  [u'time'],
  [u'root'],
  [u'thumb', u'folk'],
  [u'film'],
  [u'mind', u'glitz', u'shock', u'value', u'day', u'horror', u'movie']],
 [[u'critic', u'audience', u'movie'],
  [u'thing', u'taste', u'movie', u'year'],
  [u'criticism', u'movie', u'character', u'development', u'story'],
  [u'man', u'folk', u'movie', u'babysitter'],
  [u'babysitter', u'flick', u'night', u'light', u'dude', u'mofo'],
  [u'stuff', u'willies.<br', u'fun', u'minority']],
 [[u'enemies',
   u'kind',
   u'throw-back',
   u'gangster',
   u'biography',
   u'dog',
   u'roaring'],
  [u'film', u'deal', u'energy'],
  [u'moment']],
 [[u'flick'],
  [u'hour', u'end', u'movie', u'scene', u'half', u'stick', u'vampire']],
 [[u'movie',
   u'lot',
   u'storyline',
   u'saga',
   u'misadventure',
   u'boy',
   u'beauty',
   u'enemy'],
  [u'security', u'guard', u'thug(and', u'prostitute', u'gang'],
  [u'thug',
   u'gang',
   u'exploit',
   u'boy',
   u'trouble',
   u'way',
   u'movie',
   u'movie'],
  [u'beginning',
   u'tommy',
   u'gun',
   u'outlaw',
   u'disadvantage',
   u'shootout',
   u'gang',
   u'era',
   u'movie',
   u'era',
   u'way',
   u'train']],
 [[u'movie', u'plot', u'shoot', u'scene', u'character', u'rider'],
  [u'hate', u'direction'],
  [u'story', u'fact'],
  [u'enjoy', u'movie', u'gangster', u'movie']],
 [[u'screening', u'fun', u'movie', u'time'],
  [u'end', u'summer', u'thriller', u'craving'],
  [u'<br', u'actor', u'action', u'fun'],
  [u'<br', u'thrills,action', u'plot', u'summer']],
 [[u'sure', u'movie', u'heck', u'folk'],
  [u'rating', u'disc', u'player'],
  [u'commentator',
   u'enemy',
   u'movie',
   u'per-se',
   u'version',
   u'imdb',
   u'such.<br',
   u'person'],
  [u'story', u'person'],
  [u'crime', u'commentator', u'son', u'activity'],
  [u'movie'],
  [u'<br',
   u'task',
   u'woman',
   u'age',
   u'death',
   u'age',
   u'girl',
   u'home',
   u'mother',
   u'hoodlum',
   u'son'],
  [u'scene'],
  [u'director', u'shot', u'story'],
  [u'star', u'expertise', u'direction', u'second-grader', u'brave'],
  [u'database', u'score', u'change'],
  [u'practice', u'mood', u'time'],
  [u'surprise', u'here.<br', u'surprise', u'comment', u'hope', u'rating'],
  [u'movie', u'conclusion', u'person'],
  [u'movie'],
  [u'gem']],
 [[u'internet', u'research', u'course'],
  [u'hell',
   u'woman',
   u'movie',
   u'bank',
   u'scheme',
   u'kiddnapping',
   u'murder',
   u'boy',
   u'crime',
   u'drama'],
  [u'script', u'gunfight', u'slow', u'motion', u'death', u'scene'],
  [u'gunfight', u'fun', u'theme'],
  [u'movie', u'sense', u'ego', u'intimidation', u'male', u'agenda'],
  [u'use', u'period'],
  [u'set',
   u'piece',
   u'film',
   u'cult',
   u'film',
   u'bloodiness',
   u'ruthlessness',
   u'stride',
   u'comment',
   u'man',
   u'cost'],
  [u'mom']],
 [[u'movie', u'subject', u'death', u'penalty']],
 [[u'statement', u'death', u'penalty', u'attack', u'way', u'justice'],
  [u'sequence', u'parallel', u'crime', u'execution', u'work'],
  [u'giant',
   u'performance',
   u'level',
   u'emotion.<br',
   u'actor',
   u'director',
   u'well.<br',
   u'rate']],
 [[u'comment', u'state', u'favour', u'death', u'penalty'],
  [u'way', u'thing', u'film'],
  [u'performance', u'round', u'script'],
  [u'fact', u'fault'],
  [u'issue', u'capital', u'punishment', u'stance', u'character', u'nun'],
  [u'individual', u'character', u'story'],
  [u'film']],
 [[u'movie',
   u'feature',
   u'relation',
   u'message',
   u'movie',
   u'death',
   u'penalty',
   u'execution'],
  [u'stress',
   u'drama',
   u'victim',
   u'parent',
   u'reason',
   u'hatred',
   u'desire',
   u'revenge',
   u'lessening',
   u'horror',
   u'execution',
   u'vision',
   u'question'],
  [u'movie',
   u'man',
   u'person',
   u'movie',
   u'execution',
   u'idea',
   u'execution',
   u'murder'],
  [u'weight',
   u'moment',
   u'execution',
   u'course',
   u'catharsis',
   u'word',
   u'act',
   u'execution',
   u'parallel',
   u'cut',
   u'image',
   u'murder',
   u'scene',
   u'forest',
   u'murder',
   u'cold',
   u'way']],
 [[u'movie', u'year', u'list', u'film'],
  [u'passion', u'justice'],
  [u'perspective', u'death', u'penalty', u'thing', u'cast'],
  [u'role', u'play'],
  [u'level', u'debauchery', u'movie'],
  [u'man', u'past', u'excuse'],
  [u'sense', u'murderer', u'aid', u'character', u'sister'],
  [u'character', u'person', u'action', u'excuse', u'them.<br'],
  [u'cameo', u'film', u'funny-man', u'today'],
  [u'movie', u'reason', u'work', u'opinion', u'exception', u'movie', u'book']],
 [[u'film',
   u'viewer',
   u'expectation',
   u'victim',
   u'crime',
   u'treatment',
   u'consideration',
   u'perpetrator'],
  [u'murderer.<br',
   u'man',
   u'realism',
   u'simplicity',
   u'story',
   u'crack',
   u'lawyer',
   u'story',
   u'twist'],
  [u'film', u'light', u'racist', u'murder'],
  [u'crime'],
  [u'death',
   u'penalty',
   u'film',
   u'question',
   u'redemption',
   u'inequity',
   u'justice',
   u'appropriateness',
   u'death',
   u'penalty.<br',
   u'performance'],
  [u'moment', u'film', u'depth', u'ability']],
 [[u'person',
   u'character',
   u'combination',
   u'killer',
   u'murder',
   u'teenagers.<br'],
  [u'character', u'mixture', u'killer', u'person', u'murder'],
  [u'conflict',
   u'present',
   u'party',
   u'swearing',
   u'killing',
   u'story',
   u'well.<br',
   u'approach',
   u'convict',
   u'death',
   u'responsibility',
   u'action',
   u'victim',
   u'family',
   u'convict',
   u'remorse',
   u'parties.<br',
   u'belief',
   u'sentence'],
  [u'place',
   u'theory',
   u'death',
   u'death',
   u'sort',
   u'sense',
   u'person',
   u'freedom',
   u'rest',
   u'day',
   u'sense',
   u'room',
   u'hour',
   u'rest',
   u'day',
   u'thing'],
  [u'responsibility', u'person', u'kid', u'car', u'lake'],
  [u'freedom', u'rest', u'day', u'point', u'story'],
  [u'kind',
   u'remorse',
   u'guidance.<br',
   u'note',
   u'parent',
   u'son',
   u'parent',
   u'girl',
   u'mutter',
   u'death'],
  [u'doubt',
   u'mind',
   u'friend',
   u'thought',
   u'poncelet',
   u'boy',
   u'man',
   u'girl-hence',
   u'poncelet',
   u'responsibility'],
  [u'girl', u'death']],
 [[u'tear', u'end'],
  [u'film',
   u'issue',
   u'killing',
   u'murder',
   u'death',
   u'penalty',
   u'point',
   u'forgiveness',
   u'way']],
 [[u'flight',
   u'man',
   u'killer',
   u'demand',
   u'businessman',
   u'father',
   u'thriller',
   u'audience',
   u'edge',
   u'seat'],
  [u'premise', u'phone', u'film'],
  [u'average', u'suspense', u'direction'],
  [u'film', u'pace', u'spot'],
  [u'job', u'camera'],
  [u'movie', u'share', u'moment', u'film'],
  [u'way', u'passenger'],
  [u'skill', u'storytelling.<br', u'cast'],
  [u'performance', u'character'],
  [u'performance', u'villain'],
  [u'way'],
  [u'actor', u'brain', u'movie', u'vibe'],
  [u'setting', u'fear', u'isolation', u'escape'],
  [u'tone', u'film'],
  [u'screenplay'],
  [u'moment', u'viewer'],
  [u'head'],
  [u'approach'],
  [u'end', u'thriller', u'movie', u'summer']],
 [[u'article', u'film', u'article', u'movie', u'audience'],
  [u'way', u'film', u'bit', u'person', u'choice'],
  [u'thing', u'films.<br', u'movie', u'person', u'kind', u'reaction'],
  [u'death-penalty-supporter', u'opponent', u'belief'],
  [u'death-penalty-opponent', u'belief', u'death', u'penalty', u'world'],
  [u'effect', u'thing', u'movie', u'choice', u'path'],
  [u'thing', u'person', u'lesson'],
  [u'lesson', u'yourself.<br', u'music', u'time']],
 [[u'film', u'death', u'penalty', u'world', u'topic'],
  [u'testament',
   u'intelligence',
   u'sensitivity',
   u'trait',
   u'role',
   u'film',
   u'fact',
   u'hint',
   u'compromise',
   u'camp',
   u'word',
   u'point',
   u'sense',
   u'picture',
   u'compromise']],
 [[u'capital-punishment', u'movie'],
  [u'emotion', u'story'],
  [u'movie', u'term', u'way', u'character'],
  [u'movie', u'book'],
  [u'sister', u'tone', u'religious(which']],
 [[u'movie', u'argument'],
  [u'job', u'result', u'kind', u'docu-drama', u'school', u'theme'],
  [u'face', u'love']],
 [[u'film'],
  [u'wife',
   u'sarandon',
   u'performance',
   u'sister',
   u'murder',
   u'injection',
   u'minute',
   u'acting',
   u'scene'],
  [u'film', u'oscar', u'actress'],
  [u'film']],
 [[u'movie', u'time'],
  [u'cinema', u'verite', u'story', u'events.<br'],
  [u'killer', u'life', u'parole', u'life', u'death'],
  [u'feeling', u'movie', u'chance', u'reconsider.<br', u'end', u'silence'],
  [u'drama',
   u'catharsis',
   u'moment',
   u'time',
   u'memory',
   u'touch',
   u'humanity']],
 [[u'film',
   u'death',
   u'penalty',
   u'person',
   u'death',
   u'penalty',
   u'case',
   u'killer',
   u'family',
   u'kid',
   u'nun',
   u'advisor'],
  [u'story', u'fanfare', u'lot', u'compassion', u'sensitivity'],
  [u'time', u'film', u'cast'],
  [u'documentary', u'eye', u'masterpiece'],
  [u'death', u'penalty', u'opinion', u'movie', u'issue'],
  [u'screenwriter', u'director', u'material', u'face', u'film', u'scene'],
  [u'film', u'light', u'scene', u'blood', u'violence']],
 [[u'lack', u'word'],
  [u'opinion', u'actress', u'oscar', u'credit'],
  [u'amazing', u'performance', u'performance'],
  [u'performance', u'portrayal', u'sister'],
  [u'artificiality', u'oscar', u'person', u'anyway.<br', u'film', u'message'],
  [u'person', u'feeling', u'death', u'penalty', u'portrayal', u'movie'],
  [u'debate', u'weight'],
  [u'death'],
  [u'time', u'way', u'victim', u'torment', u'parent'],
  [u'word', u'bravo.<br', u'movie', u'oscar']],
 [[u'movie', u'story', u'nun', u'advisor', u'killer', u'death', u'row'],
  [u'movie', u'nun', u'role'],
  [u'doubt', u'role'],
  [u'scene', u'execution']],
 [[u'effort', u'movie', u'row'],
  [u'movie', u'performance', u'heart'],
  [u'acting']],
 [[u'suspense', u'movie'],
  [u'way', u'theme', u'seat', u'brain', u'camera', u'work', u'plot', u'time'],
  [u'plot', u'movie', u'goer', u'minute'],
  [u'day', u'character', u'moment', u'person', u'line'],
  [u'folk', u'movie'],
  [u'idea', u'movie'],
  [u'deal', u'sense']],
 [[u'book', u'movie', u'film', u'adaptation'],
  [u'book'],
  [u'filmaker', u'repetoire'],
  [u'bit',
   u'filmaking',
   u'reflection',
   u'victim',
   u'glass',
   u'execution',
   u'room',
   u'end']],
 [[u'emotion', u'belief', u'piece', u'artwork', u'book'],
  [u'acting'],
  [u'movie', u'movie']],
 [[u'fotography',
   u'history',
   u'soundtrack',
   u'credibility',
   u'generation',
   u'actor'],
  [u'movie', u'guess', u'doubt', u'death', u'man', u'spite', u'thing']],
 [[u'film'],
  [u'answer', u'film', u'reception'],
  [u'film',
   u'controversy',
   u'portrayal',
   u'compassion',
   u'murderer',
   u'anti-death',
   u'penalty',
   u'attitude'],
  [u'user', u'film', u'comment'],
  [u'ranking', u'relation', u'quality'],
  [u'person', u'film', u'death', u'penalty'],
  [u'death',
   u'penalty',
   u'film',
   u'person',
   u'perspective',
   u'question',
   u'beliefs.<br'],
  [u'point-of-view', u'point'],
  [u'congratulation', u'thank', u'piece', u'filmmaking']],
 [[u'movie'],
  [u'deal'],
  [u'film', u'job', u'aspect', u'topic'],
  [u'argument'],
  [u'death',
   u'penalty',
   u'movie.<br',
   u'relic',
   u'time',
   u'place',
   u'society',
   u'movie',
   u'argument',
   u'death',
   u'penalty'],
  [u'reality',
   u'argument',
   u'death',
   u'penalty.<br',
   u'performance',
   u'filmmaking',
   u'film',
   u'years<br']],
 [[u'time', u'movie', u'movie'], [u'music'], [u'masterpiece']],
 [[u'movie'],
  [u'movie', u'film', u'message'],
  [u'idea',
   u'belief',
   u'viewer',
   u'film',
   u'way',
   u'view',
   u'death',
   u'penalty',
   u'murder',
   u'murderer'],
  [u'question',
   u'child',
   u'movie',
   u'fact',
   u'conviction',
   u'murder',
   u'portrayal',
   u'nomination'],
  [u'job', u'award']],
 [[u'piece', u'filmmaking'],
  [u'acting', u'script', u'issue', u'death', u'penalty', u'homage'],
  [u'film', u'deal', u'matter', u'rating']],
 [[u'world',
   u'subject',
   u'film',
   u'list',
   u'sensibility',
   u'sensitivity',
   u'film',
   u'measuring',
   u'stick'],
  [u'irony', u'matter', u'film', u'film', u'pro', u'death', u'penalty'],
  [u'heart', u'subject', u'reality', u'reason', u'thing'],
  [u'forgiveness',
   u'crime',
   u'perpetrator',
   u'strength',
   u'life.<br',
   u'adaptation',
   u'novel',
   u'sister',
   u'involvement',
   u'death-row',
   u'inmate',
   u'year',
   u'faith'],
  [u'film',
   u'pursuit',
   u'justice',
   u'dignity',
   u'letter',
   u'death-row',
   u'inmate'],
  [u'sister',
   u'prejean',
   u'journey',
   u'sentimentality',
   u'experience',
   u'audience'],
  [u'medium',
   u'cinema',
   u'experience',
   u'sister',
   u'prejean',
   u'film',
   u'well.<br',
   u'soul-stirring',
   u'portrayal',
   u'sister',
   u'prejean'],
  [u'depth',
   u'performance',
   u'way',
   u'sister',
   u'prejean',
   u'fragility',
   u'vulnerability',
   u'toughness',
   u'endeavor',
   u'behalf',
   u'reality',
   u'total'],
  [u'point',
   u'view',
   u'matter',
   u'film',
   u'sister',
   u'prejean',
   u'question',
   u'individual',
   u'proportion',
   u'melodramatic',
   u'humanity',
   u'person',
   u'expression',
   u'characterization'],
  [u'performance', u'career'],
  [u'<br', u'performance', u'portrayal', u'performance'],
  [u'way'],
  [u'person', u'caricature', u'monster', u'crime'],
  [u'fact'],
  [u'fact', u'guy', u'door', u'thing'],
  [u'strength',
   u'performance',
   u'depth',
   u'nuance',
   u'eye',
   u'imperfection',
   u'soul'],
  [u'performance',
   u'it.<br',
   u'stand-out',
   u'performance',
   u'role',
   u'father',
   u'victim'],
  [u'screen',
   u'time',
   u'character',
   u'way',
   u'sister',
   u'prejean',
   u'insight',
   u'position',
   u'surface'],
  [u'way',
   u'balance',
   u'perspective',
   u'story',
   u'message',
   u'film.<br',
   u'cast',
   u'sister'],
  [u'film',
   u'mind',
   u'way',
   u'death',
   u'penalty',
   u'intention',
   u'thought-provoking',
   u'film'],
  [u'point', u'view', u'film', u'impact', u'mind', u'nature', u'forgiveness'],
  [u'character', u'forgiveness', u'task', u'lifetime', u'work'],
  [u'thing',
   u'life',
   u'film',
   u'appreciation',
   u'individual',
   u'sister',
   u'prejean',
   u'life',
   u'need',
   u'filmmaker',
   u'life',
   u'million',
   u'person']],
 [[u'monster',
   u"being.'<br",
   u'story',
   u'nun',
   u'sister',
   u'murderer',
   u'rapist',
   u'bound',
   u'injection',
   u'machine',
   u'couple\x85',
   u'sister',
   u'convict',
   u'act',
   u'woman\x85',
   u'<br',
   u'meeting',
   u'nun',
   u'accomplice',
   u'kid',
   u'trial',
   u'order',
   u'board',
   u'hearing',
   u'life\x85',
   u'<br',
   u'film',
   u'audience',
   u'thought',
   u'consequence',
   u'death',
   u'penalty',
   u'voice',
   u'parent',
   u'kid',
   u'wood',
   u'execution',
   u'character',
   u'doubt',
   u'rightness',
   u'moment',
   u'detector',
   u'test',
   u'mother',
   u'victim',
   u'government',
   u'drug',
   u'black',
   u'kid',
   u'there\x85',
   u'poncelet',
   u'child',
   u'laugh',
   u'them\x85',
   u'<br',
   u'scene',
   u'execution',
   u'death-row',
   u'inmate',
   u'facade',
   u'identity\x85',
   u'harmony',
   u'souls\x85',
   u'eye',
   u'tears\x85',
   u'thing',
   u'world',
   u'face',
   u"love''\x97in",
   u'moment',
   u'face',
   u'love',
   u'him\x85']],
 [[u'thriller'],
  [u'streak', u'trash', u'night', u'disappointment', u'scream', u'sequel'],
  [u'movie',
   u'gripping',
   u'suspense',
   u'thriller',
   u'performance',
   u'hotel',
   u'manager',
   u'connection',
   u'figure',
   u'hotel'],
  [u'airport', u'flight', u'bay', u'breeze'],
  [u'father',
   u'demand',
   u'connection',
   u'hotel',
   u'assassination.<br',
   u'thriller',
   u'predictability',
   u'scene'],
  [u'thriller', u'beauty'],
  [u'effect'],
  [u'suspense'],
  [u'desperation',
   u'decision',
   u'escape',
   u'position.<br',
   u'entertaining',
   u'performance'],
  [u'face', u'ability', u'role', u'demand'],
  [u'hand', u'trailer', u'transition', u'stranger', u'jackass'],
  [u'guy', u'persona', u'madman'],
  [u'identity', u'role', u'ass', u'kicked.<br', u'feature'],
  [u'plenty',
   u'chalkboard',
   u'screeching',
   u'moment',
   u'heart',
   u'jumper',
   u'eye',
   u'screen',
   u'watch',
   u'picture'],
  [u'pleasure', u'performance', u'look', u'creepier', u'minute', u'thriller']],
 [[u'job', u'film'],
  [u'performance', u'role'],
  [u'viewer',
   u'opinion',
   u'death',
   u'penalty',
   u'subject',
   u'time',
   u'direction']],
 [[u'filmmaker', u'fervor', u'picture'], [u'note', u'film']],
 [[u'film'], [u'riot', u'tyrant', u'cruise', u'director']],
 [[u'fun', u'movie', u'duo'],
  [u'film', u'comedy', u'laugh'],
  [u'process', u'passenger', u'crew', u'member'],
  [u'crew', u'member', u'cruise', u'director', u'hilt', u'dictator'],
  [u'dance', u'host', u'star', u'movie', u'star'],
  [u'actress', u'love'],
  [u'mother', u'stage', u'actress'],
  [u'hoot', u'villain', u'straight', u'moment', u'star'],
  [u'gem', u'comedy.<br']],
 [[u'movie'],
  [u'comedy', u'minute', u'film', u'end', u'comedy', u'point'],
  [u'addition', u'movie']],
 [[u'friends.<br',
   u'film',
   u'course',
   u'team',
   u'effort',
   u'film',
   u'category',
   u'vehicle',
   u'fan',
   u'principle',
   u'actor',
   u'style',
   u'comedy',
   u'plots.<br',
   u'spiner',
   u'term',
   u'laugh',
   u'cruise',
   u'director.<br',
   u'lady']],
 [[u'kind', u'movie', u'person', u'age', u'movie'],
  [u'performance', u'tooth', u'scenery', u'grease', u'stain'],
  [u'uncle', u'polyester', u'performance', u'nomination'],
  [u'true-to-life',
   u'performance',
   u'man',
   u'milieu',
   u'farce.<br',
   u'film',
   u'person',
   u'humor',
   u'person',
   u'farce',
   u'ability',
   u'character',
   u'reality',
   u'character.<br',
   u'performance',
   u'version',
   u'lounge',
   u'lizard'],
  [u'host', u'life', u'type'],
  [u'rendition',
   u'slime',
   u'merit',
   u'study',
   u'example',
   u'contrast',
   u'pathetic.<br',
   u'plot',
   u'theme',
   u'result'],
  [u'plot',
   u'theme',
   u'time',
   u'theme.<br',
   u'rest',
   u'cast',
   u'professional',
   u'skill',
   u'role',
   u'spotlight'],
  [u'film', u'tier', u'actor', u'shine'],
  [u'film.<br',
   u'plot',
   u'performer',
   u'film',
   u'treat',
   u'person',
   u'actor',
   u'craft']],
 [[u'comment',
   u'film',
   u'view',
   u'phoned-in',
   u'performance',
   u'manner',
   u'time',
   u'view',
   u'mega-star',
   u'deal',
   u'release.<br',
   u'exception',
   u'principal',
   u'performer',
   u'experience',
   u'lot',
   u'tooth',
   u'film',
   u'work'],
  [u'classis',
   u'career',
   u'fun',
   u'film',
   u'lot',
   u'scenery',
   u'well.<br',
   u'viewpoint',
   u'film',
   u'play',
   u'viewpoint',
   u'film',
   u'casablance',
   u'term',
   u'lead'],
  [u'piece', u'nostalgia', u'cast']],
 [[u'movie'],
  [u'role'],
  [u'talent.<br',
   u'chemistry',
   u'cast',
   u'member',
   u'picture',
   u'team',
   u'time',
   u'vehicle',
   u'talent',
   u'use'],
  [u'character', u'storyline', u'comedy', u'character', u'movie']],
 [[u'team', u'craft', u'moment', u'screen'],
  [u'film',
   u'example',
   u'this.<br',
   u'time',
   u'brothers-in-law',
   u'land',
   u'ship',
   u'dance',
   u'instructor',
   u'board.<br',
   u'course',
   u'boss',
   u'perfectionist',
   u'person',
   u'boy'],
  [u'lesson',
   u'dancing',
   u'dance',
   u'rumba',
   u'boat',
   u'owner',
   u'dance',
   u'instructor'],
  [u'board', u'mother'],
  [u'money'],
  [u'widower', u'ever.<br', u'film', u'tribute', u'career']],
 [[u'role'],
  [u'story', u'setting', u'pace'],
  [u'scream', u'college', u'killer'],
  [u'thriller', u'originality', u'character'],
  [u'film-maker',
   u'idea',
   u'thriller',
   u'horror',
   u'genre',
   u'home',
   u'tv',
   u'movie'],
  [u'job']],
 [[u'buddy'],
  [u'lot', u'movie', u'movie'],
  [u'sea', u'comedy', u'movie', u'think']],
 [[u'ship', u'knockout', u'lot', u'scenery', u'fun', u'curf'],
  [u'height', u'career', u'dog']],
 [[u'movie', u'entertaining', u'world'],
  [u'laugh', u'feeling'],
  [u'geezer', u'fun', u'age', u'time', u'joke'],
  [u'chemistry', u'in-law'],
  [u'plot', u'fun', u'matter'],
  [u'movie', u'laugh']],
 [[u'thought'],
  [u'<br',
   u'light',
   u'year',
   u'comedy',
   u'budget',
   u'screen',
   u'movie',
   u'worth'],
  [u'movie', u'break'],
  [u'<br', u'light', u'fun'],
  [u'movie'],
  [u'rendition'],
  [u'character', u'foil', u'comedy', u'movie', u'god']],
 [[u'comedy', u'laugh', u'fan'],
  [u'film',
   u'man',
   u'film',
   u'bunch',
   u'buddy',
   u'team-up',
   u'duo',
   u'twilight',
   u'year'],
  [u'idea',
   u'gambler',
   u'thousand',
   u'dollar',
   u'debt',
   u'friend',
   u'cruise',
   u'lady',
   u'catch',
   u'dance',
   u'host',
   u'film',
   u'chuckle',
   u'courtesy'],
  [u'data',
   u'generation',
   u'snobby',
   u'ball-busting',
   u'dance',
   u'coordinator'],
  [u'boss', u'actor', u'department']],
 [[u'job', u'movie'],
  [u'teenager', u'fashion'],
  [u'movie', u'job'],
  [u'movie', u'cheap']],
 [[u'kid', u'character', u'actor'],
  [u'<br', u'movie', u'movie'],
  [u'movie', u'today', u'standard'],
  [u'<br', u'movie', u'acting']],
 [[u'time', u'movie', u'mind', u'movie'],
  [u'movie',
   u'hostage',
   u'situation',
   u'school',
   u'extent',
   u'boy',
   u'trouble'],
  [u'effect'],
  [u'effect'],
  [u'decline', u'time', u'effect'],
  [u'movie', u'plot', u'feeling', u'substance-less', u'kid'],
  [u'movie', u'effect'],
  [u'fourth', u'movie', u'effect', u'movie', u'time', u'effect'],
  [u'ghostbuster',
   u'movie',
   u'rest',
   u'top-grossing',
   u'movie',
   u'tripe',
   u'plot',
   u'lot',
   u'eye',
   u'candy'],
  [u'movie', u'ny', u'junk.<br', u'effect', u'junk'],
  [u'point', u'toy', u'soldier', u'movie'],
  [u'content', u'movie', u'extent'],
  [u'dog'],
  [u'appreciation', u'site', u'fact', u'movie', u'film'],
  [u'plot', u'scene', u'scene', u'gangster', u'movie'],
  [u'tangent.<br', u'soldier', u'fun'],
  [u'insubordination',
   u'teenager',
   u'member',
   u'authority',
   u'hostage',
   u'taker'],
  [u'rebelion', u'topic', u'majority', u'comedy'],
  [u'tension',
   u'thrill',
   u'character',
   u'fire-arm',
   u'knock',
   u'guy',
   u'point',
   u'film'],
  [u'acting', u'tripe', u'there.<br', u'soldier', u'fun'],
  [u'blowhard', u'rate', u'movie']],
 [[u'film', u'gap', u'logic'],
  [u'movie', u'fun', u'teen', u'romp', u'action', u'flick'],
  [u'action', u'excitement', u'moment'],
  [u'lot', u'flick'],
  [u'assumption']],
 [[u'toy',
   u'soldier',
   u'story',
   u'misfit',
   u'boy',
   u'attempt',
   u'school',
   u'terrorist',
   u'invasion',
   u'government',
   u'leader',
   u'father'],
  [u'headmaster',
   u'school',
   u'guy',
   u'student',
   u'sense',
   u'discipline.<br',
   u'soldier',
   u'action',
   u'hostage-crisis-at-school',
   u'movie'],
  [u'appeal', u'terrorist', u'movie', u'group'],
  [u'school', u'police', u'challenge', u'group', u'guy', u'school'],
  [u'too.<br', u'movie'],
  [u'pace'],
  [u'performance']],
 [[u'screening', u'movie', u'tonight'],
  [u'villain'],
  [u'scariest', u'guy'],
  [u'end'],
  [u'movie', u'trailer']],
 [[u'soldier',
   u'action',
   u'movie',
   u'effort',
   u'scriptwriter',
   u'director',
   u'counter-terrorist'],
  [u'end', u'credit', u'dozen', u'officer', u'official'],
  [u'movie',
   u'control',
   u'hostage',
   u'situation',
   u'movie',
   u'existence',
   u'time'],
  [u'end', u'time'],
  [u'use', u'air', u'support', u'bit'],
  [u'movie', u'counter-terrorist', u'force', u'accuracy']],
 [[u'movie', u'phase'],
  [u'film', u'mid-80', u'mid-90', u'place', u'up.<br', u'movie', u'favourite'],
  [u'time', u'fun', u'film', u'plenty', u'excitement', u'way'],
  [u'sure',
   u'shadow',
   u'budget',
   u'film',
   u'this.<br',
   u'rent',
   u'purchase',
   u'discount',
   u'price']],
 [[u'film', u'example', u'escapism'],
  [u'<br', u'cast', u'film', u'character'],
  [u'friendship',
   u'boy',
   u'heart',
   u'warming',
   u'group',
   u'boy',
   u'group',
   u'boy'],
  [u'rebel', u'teenager.<br', u'fun', u'film'],
  [u'quality']],
 [[u'movie', u'gosset'],
  [u'list'],
  [u'plot', u'script'],
  [u'gosset', u'performance', u'career']],
 [[u'movie', u'time', u'movie'],
  [u'acting', u'guy', u'plot'],
  [u'movie'],
  [u'moment', u'moment', u'moment'],
  [u'movie']],
 [[u'movie', u'title', u'drama'],
  [u'viewer',
   u'movie',
   u'man',
   u'overcome',
   u'odd',
   u'role',
   u'guidance',
   u'leadership',
   u'character',
   u'movie'],
  [u'time',
   u'movie',
   u'momentum',
   u'dissapointment',
   u'actor',
   u'film',
   u'industry',
   u'movie']],
 [[u'movie'], [u'acting', u'plot', u'movie', u'lot', u'movie']],
 [[u'achievement', u'soldier', u'fun', u'movie'],
  [u'cast', u'job', u'aspect', u'story', u'derek']],
 [[u'entertaining', u'action', u'movie'],
  [u'time', u'vhs', u'machine', u'copy'],
  [u'movie', u'reality', u'laugh', u'hour', u'half']],
 [[u'picture', u'consideration', u'entertainment', u'job'],
  [u'pulse', u'time', u'dozen', u'times.<br', u'actor', u'time', u'work'],
  [u'recognition', u'it.<br', u'fun']],
 [[u'film', u'film', u'thriller', u'understood', u'person', u'movie', u'time'],
  [u'year'],
  [u'thriller', u'plenty', u'laugh', u'eye', u'camera.<br', u'mcadam'],
  [u'day', u'guy', u'guy'],
  [u'day', u'agent', u'career', u'bad.<br', u'directing'],
  [u'story',
   u'dialog',
   u'sprucing',
   u'up.<br',
   u'fun',
   u'film',
   u'person',
   u'credit'],
  [u'mood', u'thriller', u'ticket']],
 [[u'actor', u'crush'],
  [u'total', u'movie'],
  [u'action', u'mayhem', u'man', u'attention', u'screen']],
 [[u'summary',
   u'book',
   u'boy',
   u'year',
   u'school',
   u'trouble',
   u'maker',
   u'school',
   u'school'],
  [u'boy', u'school', u'terrorist'],
  [u'friend', u'hack', u'school', u'database'],
  [u'help', u'teacher', u'terrorist', u'plan', u'school'],
  [u'book',
   u'clich\xe9.<br',
   u'movie',
   u'terrorist',
   u'terrorist',
   u'leader',
   u'group',
   u'friend'],
  [u'trouble', u'stuff'],
  [u'movie'],
  [u'character'],
  [u'rest', u'guy', u'kid', u'way', u'to).<br', u'action', u'scene'],
  [u'terrorist', u'guy'],
  [u'movie', u'man', u'kid'],
  [u'genre', u'film', u'soul', u'purpose', u'fun', u'soldier'],
  [u'story', u'line', u'dialogue'],
  [u'moment', u'tv', u'movie', u'collection']],
 [[u'movie',
   u'teenager',
   u'problem',
   u'authority',
   u'toy',
   u'soldier',
   u'viewing'],
  [u'movie', u'adult', u'credit', u'writer', u'deal'],
  [u'glee', u'guy', u'butt'],
  [u'score', u'cherry'],
  [u'reason', u'toy', u'soldier', u'need'],
  [u'entertaining', u'movie', u'pantheon']],
 [[u'surprise'],
  [u'movie', u'title', u'terrorist', u'situation', u'school'],
  [u'soldier', u'time', u'period', u'action', u'movie'],
  [u'action', u'plot', u'way', u'guy', u'douchebag', u'movie', u'action'],
  [u'rating']],
 [[u'screw',
   u'plot',
   u'terrorist',
   u'school',
   u'hostage',
   u'demand',
   u'head',
   u'prison'],
  [u'plot', u'sure'],
  [u'film'],
  [u'film',
   u'tolerance',
   u'film',
   u'violence',
   u'remember',
   u'right',
   u'movie'],
  [u'guy',
   u'helicopter',
   u'machine',
   u'gun',
   u'force',
   u'guy',
   u'hand',
   u'sure',
   u'terrorist',
   u'capped',
   u'head'],
  [u'action', u'humor', u'acting', u'film', u'experience']],
 [[u'time', u'movie'],
  [u'reason', u'movie', u'person', u'world', u'job', u'movie'],
  [u'movie'],
  [u'script', u'screenplay'],
  [u'year', u'course', u'theater'],
  [u'friend'],
  [u'work']],
 [[u'film', u'tech', u'massacre', u'film', u'guy', u'home', u'goonies'],
  [u'way', u'skateboard', u'floor', u'trip'],
  [u'cheesiness', u'cult', u'status']],
 [[u'film', u'overtone'],
  [u'soundtrack', u'way', u'point', u'visual'],
  [u'scene', u'example'],
  [u'<br', u'idea', u'movie', u'acting'],
  [u'<br', u'soundtrack']],
 [[u'performance', u'toy', u'soldier'],
  [u'prankster', u'friend'],
  [u'day',
   u'school',
   u'boy',
   u'group',
   u'terrorist',
   u'boy',
   u'teacher',
   u'hostage',
   u'school',
   u'leader',
   u'father',
   u'prison',
   u'boy',
   u'hostage',
   u'kid',
   u'son',
   u'person',
   u'half',
   u'school',
   u'mouth',
   u'action'],
  [u'government', u'way', u'boy', u'matter', u'hand']],
 [[u'idea', u'film', u'terrorist', u'action', u'film'],
  [u'vengeance', u'film', u'suspense', u'plot']],
 [[u'movie', u'comedian', u'mid-50', u'white', u'body'],
  [u'rap', u'music', u'man'],
  [u'humor', u'movie', u'trouble', u'behavior', u'community']],
 [[u'movie',
   u'year',
   u'half',
   u'year',
   u'birthday',
   u'suspense',
   u'action',
   u'drama',
   u'movie',
   u'school',
   u'kid',
   u'kid',
   u'time',
   u'rejection',
   u'school',
   u'act',
   u'act',
   u'rebellion',
   u'school',
   u'terrorist',
   u'day',
   u'reason',
   u'leader',
   u'father',
   u'leader',
   u'student',
   u'bomb',
   u'order',
   u'father',
   u'back.<br',
   u'friend',
   u'guy',
   u'past',
   u'living',
   u'family',
   u'father',
   u'terrorist',
   u'school',
   u'friend',
   u'band',
   u'terrorist',
   u'act',
   u'tactics.<br',
   u'movie',
   u'person',
   u'person',
   u'hostage',
   u'movie',
   u'soldier',
   u'thriller',
   u'heart',
   u'beating',
   u'student',
   u'age',
   u'terrorist',
   u'school',
   u'movie',
   u'minute',
   u'time',
   u'decision']],
 [[u'movie', u'movie', u'today'],
  [u'fact',
   u'movie',
   u'mastermind',
   u'variation',
   u'theme',
   u'fun',
   u'matter.<br',
   u'film'],
  [u'comradre', u'character', u'odd', u'theme', u'film'],
  [u'film'],
  [u'thing', u'trilogy', u'trip', u'memory', u'lane'],
  [u'support', u'film', u'villain'],
  [u'sleepwalk',
   u'role',
   u'brevity',
   u'film',
   u'relationship',
   u'nature.<br',
   u'action'],
  [u'today',
   u'standard',
   u'tv',
   u'movie',
   u'production',
   u'value',
   u'violence',
   u'film',
   u'school',
   u'student'],
  [u'director',
   u'budget',
   u'moment',
   u'humor.<br',
   u'park',
   u'brain',
   u'door',
   u'enjoy',
   u'action',
   u'flick',
   u'material']],
 [[u'terrorist', u'hostage', u'school', u'demand'],
  [u'premise', u'film'],
  [u'group', u'kid', u'film', u'underwear', u'guy'],
  [u'actor'],
  [u'action', u'film'],
  [u'performance',
   u'ball',
   u'headmaster',
   u'dean.<br',
   u'lot',
   u'action',
   u'suspense',
   u'explosion',
   u'brain'],
  [u'<br', u'complaint', u'bit', u'ending', u'violence', u'rating']],
 [[u'soldier', u'movie'],
  [u'attention', u'story', u'life'],
  [u'movie', u'showcase', u'talent'],
  [u'movie', u'actor', u'spotlight', u'movie', u'showcase', u'character'],
  [u'movie', u'fan', u'movie']],
 [[u'movie', u'story', u'line', u'bit'],
  [u'actor', u'performance'],
  [u'guy', u'job', u'role'],
  [u'movie', u'edge', u'seat', u'time', u'plot', u'movie']],
 [[u'theater', u'mood', u'time'],
  [u'kind', u'mindset', u'spirit'],
  [u'trailer',
   u'water',
   u'theme',
   u'flashback',
   u'movie',
   u'dealt',
   u'subject',
   u'waterworld'],
  [u'promise', u'effect'],
  [u'features.<br', u'minute', u'fear', u'hesitancy'],
  [u'movie', u'midst', u'rescue', u'mission', u'orange', u'face', u'lift'],
  [u'concern', u'appearance', u'fact', u'effort'],
  [u'sunglasses', u'guy', u'toothpick', u'mouth', u'smirk'],
  [u'him.<br', u'performance', u'jab'],
  [u'rescue',
   u'scene',
   u'drama',
   u'humor',
   u'acting',
   u'film',
   u'majority',
   u'audience'],
  [u'clich\xe9s',
   u'predictability',
   u'moment',
   u'sappiness',
   u'entertainment',
   u'value.<br',
   u'feeling',
   u'pace',
   u'guy',
   u'training',
   u'session',
   u'aspect',
   u'film'],
  [u'hero',
   u'story',
   u'screen',
   u'way',
   u'audience',
   u'group.<br',
   u'rescue',
   u'swimmer'],
  [u'mission',
   u'water',
   u'disorientation',
   u'exhaustion',
   u'hypothermia',
   u'lack',
   u'oxygen',
   u'person',
   u'survival'],
  [u'everybody', u'decision', u'responsibility'],
  [u'<br',
   u'job',
   u'tribute',
   u'breed',
   u'hero',
   u'job',
   u'customers.<br',
   u'gist',
   u'<br',
   u'rescue',
   u'mission',
   u'middle',
   u'ocean',
   u'chance'],
  [u'money', u'worth']],
 [[u'blow',
   u'member',
   u'water',
   u'love',
   u'movie',
   u'play',
   u'power',
   u'trip'],
  [u'screen'],
  [u'power'],
  [u'bar', u'vampire', u'sight', u'role', u'woman'],
  [u'story',
   u'plot',
   u'etc.<br',
   u'heart',
   u'wrenching',
   u'death',
   u'scene',
   u'mind',
   u'vampire',
   u'movie']],
 [[u'novel', u'movie', u'book', u'damned', u'health'],
  [u'movie', u'health', u'book', u'brain', u'movie'],
  [u'number', u'page', u'hand', u'movie', u'novel'],
  [u'plot',
   u'movie',
   u'sea',
   u'vampire',
   u'history.<br',
   u'narration',
   u'heck',
   u'lot',
   u'vampire',
   u'damned',
   u'production',
   u'resource',
   u'flesh',
   u'storyline'],
  [u'lace', u'elegance', u'budget', u'effect'],
  [u'novel', u'movie', u'production', u'team', u'attention', u'place'],
  [u'soundtrack'],
  [u'sickness',
   u'noggin',
   u'film',
   u'goth-rock',
   u'splice',
   u'montage',
   u'minute',
   u'directing'],
  [u'movie', u'director', u'time', u'money', u'justice'],
  [u'result', u'vampire', u'scene', u'plenty', u'effect'],
  [u'contact'],
  [u'make-up'],
  [u'scene',
   u'head',
   u'day',
   u'lot',
   u'budget',
   u'right.<br',
   u'quality',
   u'movie',
   u'garbage'],
  [u'actress',
   u'life',
   u'movie',
   u'performance',
   u'plenty',
   u'belly',
   u'dancing'],
  [u'soundtrack'],
  [u'novel', u'hour', u'movie', u'director', u'hand'],
  [u'rock', u'roll', u'addition', u'slew', u'vampire', u'movie'],
  [u'director', u'movie', u'mini', u'series']],
 [[u'culture', u'acting', u'storyline', u'movie'],
  [u'bit', u'entertaining', u'fun'],
  [u'movie', u'plot', u'acting', u'scene', u'laugh', u'end', u'<br']],
 [[u'bigger,demanding', u'presence', u'eye', u'attention'],
  [u'movie',
   u'relationship',
   u'like.akasha',
   u'role',
   u'sort',
   u'movie',
   u'half',
   u'movie',
   u'her(akasha',
   u'death',
   u'fought',
   u'ancient',
   u'book',
   u'fight',
   u'ancient',
   u'secs).akasha',
   u'head',
   u'sec',
   u'punk',
   u'world.<br',
   u'akasha']],
 [[u'movie'],
  [u'movie',
   u'fun',
   u'sense',
   u'humor',
   u'person',
   u'comedy',
   u'movie',
   u'opinion']],
 [[u'film', u'scenery', u'area'],
  [u'period', u'time', u'sleep', u'vampire', u'oath', u'band'],
  [u'movie', u'icon', u'vampire', u'plot', u'death'],
  [u'member', u'study', u'vampire', u'family', u'tree'],
  [u'boss',
   u'obsession',
   u'obsession',
   u'vampire',
   u'marius',
   u'vampire',
   u'man',
   u'vampire'],
  [u'lestat', u'diary', u'killing', u'akasha'],
  [u'concert', u'news', u'vampire'],
  [u'royality', u'care', u'vampire', u'plot'],
  [u'film', u'fight', u'scene', u'music', u'location'],
  [u'plane',
   u'crash',
   u'film',
   u'premiere',
   u'set',
   u'sets.<br',
   u'film',
   u'film']],
 [[u'friend'],
  [u'music', u'story', u'line', u'emotion', u'fact'],
  [u'book', u'fan', u'unfaithfulness', u'movie', u'book', u'loyalty)i'],
  [u'movie', u'combination', u'vampire', u'lestat']],
 [[u'fact',
   u'lot',
   u'movie.<br',
   u'type',
   u'music',
   u'movie',
   u'rock',
   u'star',
   u'movie',
   u'role',
   u'person',
   u'character',
   u'sequel',
   u'stuff.<br',
   u'movie'],
  [u'vampire', u'movie']],
 [[u'movie'],
  [u'rating'],
  [u'job', u'acting'],
  [u'movie', u'vampire', u'love', u'story', u'word'],
  [u'movie']],
 [[u'rice',
   u'fan',
   u'eye',
   u'sure',
   u'movie',
   u'maker',
   u'story',
   u'<br',
   u'movie',
   u'<br',
   u'movie',
   u'vampire',
   u'movie',
   u'lestat',
   u'feature',
   u'lestat',
   u'way',
   u'way',
   u'mortal',
   u'arrogance',
   u'sheer',
   u'love',
   u'fame',
   u'flawlessly.<br',
   u'movie',
   u'scene',
   u'book',
   u'movie',
   u'do.<br',
   u'reader',
   u'love',
   u'movie',
   u'thing',
   u'goth',
   u'music',
   u'dialogue',
   u'vampire',
   u'movie',
   u'wit',
   u'character',
   u'vampire',
   u'movie']],
 [[u'movie', u'time'],
  [u'scene'],
  [u'time', u'eye'],
  [u'thing', u'ruin', u'movie', u'character'],
  [u'character', u'quality'],
  [u'reason', u'movie', u'book']],
 [[u'vampire', u'movie', u'time'],
  [u'carnage', u'vampire', u'movie'],
  [u'music'],
  [u'sequel']],
 [[u'vampire', u'movie'],
  [u'combination',
   u'attitude',
   u'rock',
   u'mood',
   u'star',
   u'movie',
   u'combination'],
  [u'advice', u'friend', u'family', u'member', u'movie', u'buying']],
 [[u'sheer',
   u'loneliness',
   u'sleep',
   u'sound',
   u'music',
   u'band',
   u'vampire',
   u'lestat'],
  [u'longing',
   u'loneliness',
   u'living',
   u'light',
   u'attitude',
   u'music',
   u'anger',
   u'vampire',
   u'evil',
   u'thousand',
   u'years.<br',
   u'film',
   u'book-to-film',
   u'adaptation'],
  [u'book', u'screen', u'disappointment'],
  [u'film',
   u'vampire',
   u'film.<br',
   u'plot',
   u'hole',
   u'incongruency',
   u'film'],
  [u'sensuality', u'sexiness', u'film'],
  [u'relationship', u'film', u'sizzling.<br', u'film', u'story'],
  [u'sensuality', u'tension', u'film']],
 [[u'vampire', u'movie'],
  [u'effect', u'casting'],
  [u'movie'],
  [u'makeup', u'costume']],
 [[u'love', u'story', u'setting'],
  [u'plot', u'plot', u'twist', u'turn', u'suspense'],
  [u'end', u'movie', u'minute', u'start', u'film', u'love', u'story'],
  [u'lady'],
  [u'voyage', u'class', u'artist', u'way', u'ticket', u'poker', u'game'],
  [u'class', u'worry'],
  [u'fall',
   u'love',
   u'audience',
   u'sinking',
   u'eyes.<br',
   u'movie',
   u'time',
   u'exploration',
   u'wreck',
   u'group',
   u'treasure',
   u'sunk'],
  [u'coast', u'voyage', u'bound'],
  [u'day',
   u'voyage',
   u'plot',
   u'story',
   u'time',
   u'entrapement',
   u'engagement',
   u'love',
   u'class',
   u'passenger'],
  [u'movie',
   u'speed',
   u'ship',
   u'newspaper',
   u'headline',
   u'publicity',
   u'night',
   u'morning'],
  [u'decision', u'year', u'experience', u'leg', u'speed'],
  [u'portrayal', u'hole', u'ship', u'gash'],
  [u'day', u'ice', u'trip', u'radio'],
  [u'word',
   u'employee',
   u'class',
   u'passenger',
   u'class',
   u'passenger',
   u'authority',
   u'information',
   u'sinking'],
  [u'metal', u'year', u'condition', u'cold', u'night'],
  [u'plot',
   u'portayal',
   u'event',
   u'time',
   u'event',
   u'place',
   u'character',
   u'story',
   u'purpose',
   u'movie',
   u'character',
   u'characteristic',
   u'idea',
   u'person',
   u'ship'],
  [u'group', u'mother', u'character', u'story', u'group', u'person', u'time'],
  [u'character', u'ship', u'designer', u'officer'],
  [u'voyage', u'voyage'],
  [u'portrayal',
   u'officer',
   u'tragedy',
   u'officer',
   u'passenger',
   u'ship',
   u'pistol'],
  [u'record',
   u'heroicly',
   u'point',
   u'monument',
   u'honor',
   u'officer',
   u'hometown'],
  [u'movie',
   u'language',
   u'problem',
   u'crew',
   u'passenger',
   u'non-english',
   u'speaking',
   u'nation'],
  [u'person', u'bed', u'water', u'room'],
  [u'brandy', u'smoking', u'cigar'],
  [u'man', u'ship', u'wife', u'lifeboat'],
  [u'addition', u'medal', u'crew', u'survivor', u'water'],
  [u'gymnasium', u'machine', u'photograph'],
  [u'outfits', u'costuming', u're-creation', u'era'],
  [u'time', u'woman', u'suffrage', u'movement'],
  [u'woman', u'time', u'security', u'seast', u'status', u'husband'],
  [u'money'],
  [u'time'],
  [u'woman', u'dinner', u'male', u'figure', u'scene'],
  [u'woman', u'time', u'holder', u'cigarette', u'time', u'movie'],
  [u'background',
   u'film',
   u'expert',
   u'year',
   u'cross-referencing',
   u'history',
   u'liberty'],
  [u'cinematography',
   u'effect',
   u'film',
   u'message',
   u'movie',
   u'person',
   u'ship',
   u'hour',
   u'demise'],
  [u'director', u'reaction', u'time', u'crisis', u'person', u'life'],
  [u'situation', u'night'],
  [u'year', u'site'],
  [u'movie', u'look', u'disaster'],
  [u'question', u'person', u'today', u'treasure', u'wreck', u'graveyard'],
  [u'today',
   u'voyage',
   u'valuable',
   u'film',
   u'value',
   u'time',
   u'matter.<br',
   u'film'],
  [u'addition', u'camera', u'pressure', u'ocean'],
  [u'probe', u'year', u'ship', u'sunk', u'perspective', u'ship'],
  [u'film', u'wreck', u'scene', u'voyage'],
  [u'shift',
   u'scene',
   u'scene',
   u'voyage',
   u'transition',
   u'story',
   u'manner'],
  [u'beginning',
   u'movie',
   u'recreation',
   u'scene',
   u'person',
   u'coast',
   u'distinction',
   u'rest',
   u'event',
   u'film.<br',
   u'biography',
   u'work',
   u'art',
   u'epic'],
  [u'history', u'novel', u'treat', u'picture'],
  [u'aspect',
   u'film',
   u'material',
   u'costuming',
   u'sound',
   u'cintematography',
   u'editing'],
  [u'character',
   u'insight',
   u'life',
   u'character',
   u'disaster',
   u'movie',
   u'you.<br']],
 [[u'arse', u'time'], [u'story', u'comedy', u'time']],
 [[u'movie', u'novel', u'vampire', u'vision'],
  [u'somebody', u'music', u'video', u'clip'],
  [u'music',
   u'shot',
   u'movie',
   u'story.<br',
   u'fan',
   u'modification',
   u'story'],
  [u'change', u'romance', u'addition', u'adaptation', u'failure'],
  [u'mood', u'century', u'angst', u'rebellion', u'music'],
  [u'book', u'element', u'movie'],
  [u'vampire',
   u'lestat',
   u'movie',
   u'creator',
   u'something.<br',
   u'effect',
   u'walking',
   u'flame',
   u'thing',
   u'movie'],
  [u'death'],
  [u'cast', u'concert'],
  [u'course',
   u'accent.<br',
   u'music',
   u'dillemas',
   u'loneliness',
   u'eternity',
   u'book',
   u'movie',
   u'scenario',
   u'movie',
   u'vampire',
   u'blood',
   u'monster'],
  [u'style'],
  [u'vampire',
   u'existence',
   u'hunger',
   u'point',
   u'view',
   u'moral',
   u'vampire',
   u'flaw',
   u'person',
   u'vision',
   u'book',
   u'vote',
   u'breakdown']],
 [[u'fact', u'attempt'],
  [u'player', u'series', u'half-dozen', u'cameo'],
  [u'player'],
  [u'reviews', u'movie', u'music', u'portrayal', u'ethos'],
  [u'place', u'entrance', u'mini', u'dance', u'scene'],
  [u'movie',
   u'breadth',
   u'book',
   u'series',
   u'supplement.<br',
   u'fan',
   u'series',
   u'style',
   u'sensitivity',
   u'treatment'],
  [u'movie', u'faithful', u'representation', u'author', u'vision']],
 [[u'book',
   u'half',
   u'character',
   u'plot',
   u'person',
   u'parent',
   u'character'],
  [u'piece', u'try', u'book', u'movie']],
 [[u'movie', u'time'],
  [u'performance'],
  [u'girl', u'role', u'person'],
  [u'change'],
  [u'portrayel'],
  [u'time', u'movie'],
  [u'mind']],
 [[u'movie', u'darkness', u'book', u'opinion', u'movie'],
  [u'campy', u'fun'],
  [u'hair', u'eye', u'book', u'hair'],
  [u'predator', u'effect', u'soundtrack']],
 [[u'adaptation', u'book', u'theme', u'damned', u'vampire', u'story'],
  [u'layer', u'character', u'surface', u'identity'],
  [u'order', u'event', u'movie', u'uneven.<br', u'thing', u'movie', u'rating'],
  [u'film', u'affect', u'vampires)had', u'public', u'girl'],
  [u'movie',
   u'job',
   u'importance',
   u'heredity',
   u'history',
   u'vampire',
   u'pride'],
  [u'scene', u'sensuality', u'damned'],
  [u'chemistry', u'acting'],
  [u'intelligence', u'shame', u'book', u'more.<br', u'movie'],
  [u'effect'],
  [u'area',
   u'incoherence',
   u'beginning',
   u'middle',
   u'movie',
   u'viewer',
   u'story',
   u'book).<br',
   u'movie',
   u'score',
   u'mix',
   u'rock',
   u'music',
   u'problem',
   u'song'],
  [u'scenery', u'story', u'damned', u'adaption', u'novel'],
  [u'change', u'piece', u'film', u'work']],
 [[u'vampire', u'tale', u'cup', u'blood', u'experience'],
  [u'consortium',
   u'undead',
   u'setting',
   u'story',
   u'shadow',
   u'darkness',
   u'soul',
   u'eternity.<br',
   u'vampire',
   u'world',
   u'year',
   u'sound',
   u'world',
   u'slumber',
   u'change',
   u'liking',
   u'venture'],
  [u'world', u'sound', u'kind', u'music', u'driving', u'sense', u'welcome'],
  [u'time', u'time', u'world', u'term'],
  [u'end', u'man', u'band', u'singer', u'world'],
  [u'vampire',
   u'concert',
   u'lestat',
   u'question',
   u'kind',
   u'fact',
   u'vampire',
   u'right',
   u'vampire',
   u'fact',
   u'lestat',
   u'year',
   u'plan',
   u'concert'],
  [u'point', u'lestat', u'vampire', u'presence'],
  [u'concert',
   u'rest',
   u'attendance',
   u'fail.<br',
   u'mistake',
   u'story',
   u'atmosphere',
   u'moment',
   u'film',
   u'bram'],
  [u'pace', u'scene', u'thrill', u'film', u'menace'],
  [u'tally',
   u'fact',
   u'flesh',
   u'win',
   u'blood-letting',
   u'taste',
   u'share',
   u'lip',
   u'mouth',
   u'stuff'],
  [u'hand', u'sequence', u'speed', u'vampire', u'air', u'eye'],
  [u'job',
   u'tooth',
   u'alienation',
   u'sense',
   u'detachment',
   u'star',
   u'power',
   u'role',
   u'look',
   u'attitude'],
  [u'sense', u'acceptance', u'scrutiny', u'hint', u'remorse', u'longing'],
  [u'performance',
   u'character',
   u'convincingly.<br',
   u'job',
   u'fact',
   u'strength',
   u'film',
   u'character',
   u'bit',
   u'way',
   u'performance'],
  [u'<br',
   u'performance',
   u'woman',
   u'role',
   u'outcome',
   u'drama',
   u'presence'],
  [u'performer', u'talent', u'beauty'],
  [u'story', u'offering', u'genre', u'fan', u'film', u'director', u'cast'],
  [u'attention',
   u'drama',
   u'story',
   u'way',
   u'thrill',
   u'horror',
   u'film',
   u'cut',
   u'appetite']],
 [[u'sum', u'plot', u'story', u'dream', u'bombshell', u'heiress'],
  [u'motor', u'love', u'life', u'motor', u'company', u'minute', u'shortie'],
  [u'style'],
  [u'theme', u'film', u'code', u'tv', u'today'],
  [u'year']],
 [[u'role', u'lisp', u'career'],
  [u'inventor',
   u'airplane',
   u'motor.<br',
   u'star',
   u'woman',
   u'love',
   u'comfort',
   u'security',
   u'man',
   u'ride',
   u'sister',
   u'producer',
   u'cosmetologist',
   u'butler).<br',
   u'star',
   u'film',
   u'toehold',
   u'talky'],
  [u'actor', u'stage', u'skid-row', u'production']],
 [[u'movie',
   u'showing',
   u'preview',
   u'theater.<br',
   u'plot',
   u'line',
   u'gentleman',
   u'script'],
  [u'rescue', u'team', u'leader', u'training', u'team', u'mission'],
  [u'movie', u'rigor', u'training', u'process', u'story', u'character'],
  [u'part.<br', u'surprise', u'movie'],
  [u'use',
   u'humor',
   u'exploration',
   u'toughness',
   u'training',
   u'fun',
   u'thing',
   u'trainer'],
  [u'movie',
   u'audience',
   u'laugh',
   u'gasp',
   u'clap',
   u'end',
   u'tribute',
   u'movie.<br',
   u'time',
   u'couple',
   u'moment',
   u'movie)and']],
 [[u'movie'],
  [u'plot'],
  [u'movie', u'story', u'line', u'comedy', u'story'],
  [u'movie']],
 [[u'crew', u'return', u'year', u'casino'],
  [u'couple', u'heist', u'money.<br'],
  [u'cast', u'expectation'],
  [u'film.<br', u'moment', u'film'],
  [u'movie', u'fun.<br', u'heist', u'movie']],
 [[u'year', u'gang', u'return'],
  [u'reason', u'heist', u'bit', u'time'],
  [u'film', u'bit', u'motivation', u'time'],
  [u'cameo', u'grace', u'movie', u'thing'],
  [u'series.<br', u'plot', u'year', u'guy', u'film', u'money', u'cop'],
  [u'gang', u'cop', u'girlfriend'],
  [u'gang', u'enemy', u'thief', u'scene', u'film']],
 [[u'adage', u'sequel'],
  [u'gang', u'lot', u'money', u'state'],
  [u'act', u'death', u'thievery', u'cop', u'flame'],
  [u'<br', u'heist', u'slick', u'thief', u'legend', u'complex'],
  [u'scene', u'character', u'development'],
  [u'<br',
   u'band',
   u'man',
   u'sequel',
   u'friend',
   u'situation',
   u'conversation'],
  [u'cousin', u'talk', u'cock-er-ney', u'accent'],
  [u'talk', u'friend', u'glass', u'mind'],
  [u'film', u'lack', u'character', u'development', u'versus'],
  [u'actor', u'film', u'square', u'peg', u'hole'],
  [u'chemistry', u'star', u'film', u'choice', u'location'],
  [u'person', u'life', u'total', u'contrast', u'gang'],
  [u'location', u'contrast', u'actor', u'style', u'film'],
  [u'slick'],
  [u'film', u'formula', u'letter', u'damage', u'film']],
 [[u'cast'],
  [u'sequel'],
  [u'tension', u'thrill', u'heist'],
  [u'light', u'parody', u'heist', u'genre'],
  [u'gripping', u'heist'],
  [u'laugh', u'dialogue', u'character', u'genius', u'scene']],
 [[u'medium', u'medium'],
  [u'plot', u'reader', u'imagination', u'structure'],
  [u'soderbergh', u'technique', u'form', u'movie'],
  [u'comment',
   u'person',
   u'heist',
   u'movie',
   u'entrapment',
   u'person',
   u'clich\xe9s',
   u'romance',
   u'tension',
   u'lead',
   u'plot',
   u'audience',
   u'awake'],
  [u'treat', u'light', u'silver', u'screen', u'disappointment', u'film']],
 [[u'director', u'cast', u'zenith', u'sequel'],
  [u'film', u'herd', u'shot'],
  [u'story', u'film', u'pleasure'],
  [u'heist', u'movie']],
 [[u'twist', u'twist'],
  [u'writer', u'element', u'story'],
  [u'actor', u'character', u'character', u'quirk'],
  [u'character', u'entity']],
 [[u'spectrum'],
  [u'hard', u'edge', u'stuff', u'game'],
  [u'day'],
  [u'scream',
   u'trequel',
   u'million',
   u'flock',
   u'minute',
   u'parlay',
   u'dig',
   u'guy']],
 [[u'story'],
  [u'work', u'film'],
  [u'fan', u'effect', u'movie', u'actor.<br', u'tribute', u'hero']],
 [[u'advance', u'screening', u'film', u'performance', u'film'],
  [u'storyline', u'film'],
  [u'performance'],
  [u'frailty',
   u'strength',
   u'character',
   u'scene',
   u'reason',
   u'rescue',
   u'elite',
   u'film',
   u'moment'],
  [u'storyline',
   u'education',
   u'sacrifice',
   u'training',
   u'rescuer',
   u'preparation',
   u'job',
   u'responsibility',
   u'life',
   u'sea'],
  [u'effect', u'rescue', u'scene', u'wowing', u'sea', u'storm'],
  [u'co-star',
   u'carnivale',
   u'captain',
   u'base',
   u'role',
   u'leader',
   u'prerequisite',
   u'ice',
   u'water',
   u'vein'],
  [u'film', u'exposure', u'respect', u'audience', u'end']],
 [[u'score', u'review', u'film', u'chorus', u'movie', u'score.<br'],
  [u'movie', u'door', u'website', u'protege'],
  [u'film',
   u'movie',
   u'therapy',
   u'humour',
   u'area',
   u'society',
   u'class',
   u'division',
   u'wealth',
   u'employment',
   u'dream',
   u'comedy',
   u'list',
   u'disappointment'],
  [u'film', u'movie'],
  [u'movie',
   u'plot',
   u'movie',
   u'tv',
   u'week',
   u'movie',
   u'opinion',
   u'version',
   u'area',
   u'fact',
   u'day',
   u'week',
   u'year',
   u'picture.<br',
   u'plot',
   u'film.<br',
   u'experience'],
  [u'movie',
   u'review',
   u'thing',
   u'time',
   u'cinema',
   u'experience',
   u'ad',
   u'nauseum',
   u'cost',
   u'cinema',
   u'ticket'],
  [u'movie']],
 [[u'web', u'pilot'],
  [u'skeptic', u'cheese', u'factor'],
  [u'struggle',
   u'movie',
   u'is.<br',
   u'course',
   u'love',
   u'story',
   u'surprise'],
  [u'movie',
   u'tale',
   u'life',
   u'time',
   u'wounds.<br',
   u'girlie',
   u'compliment',
   u'movie.<br',
   u'critic',
   u'gentleman',
   u'movie',
   u'times.<br',
   u'word',
   u'language.<br',
   u'movie',
   u'hour',
   u'end.<br',
   u'laugh',
   u'hope',
   u'movie']],
 [[u'time', u'face', u'value'],
  [u'throw', u'guy', u'revenge', u'act', u'rule', u'book', u'movie'],
  [u'cool'],
  [u'thing', u'character', u'matter', u'issue'],
  [u'case', u'matter', u'day'],
  [u'film', u'land', u'time'],
  [u'nerd', u'day'],
  [u'person']],
 [[u'movie', u'movie'],
  [u'lot', u'monument', u'locations.it', u'writer', u'director'],
  [u'plot'],
  [u'race', u'trail', u'meeting', u'place'],
  [u'lot', u'movie'],
  [u'plot', u'twist']],
 [[u'film', u'way'],
  [u'religion', u'science', u'problem', u'statement'],
  [u'development', u'film', u'change', u'character', u'removal'],
  [u'sub-plot', u'possibility'],
  [u'<br', u'performance'],
  [u'film'],
  [u'<br', u'entertainment', u'entertainment']],
 [[u'thing',
   u'<br',
   u'demon',
   u'film',
   u'vinci',
   u'code.<br',
   u'slew',
   u'book',
   u'movie',
   u'remake',
   u'resurrection',
   u'franchise'],
  [u'entertaining',
   u'film',
   u'cam',
   u'technique',
   u'lens',
   u'flare',
   u'gci',
   u'action',
   u'sequences.<br',
   u'respect',
   u'demon',
   u'fashioned.it',
   u'debate',
   u'age',
   u'subject',
   u'religion',
   u'vs',
   u'science',
   u'insight',
   u'parallel',
   u'house',
   u'way',
   u'temple',
   u'science',
   u'hadron',
   u'collider',
   u'facility.<br',
   u'guy',
   u'role',
   u'time',
   u'performance'],
  [u'support', u'rock', u'cast', u'highlight'],
  [u'film', u'saving', u'grace', u'pace'],
  [u'time',
   u'story',
   u'film',
   u'time',
   u'fault',
   u'logic.<br',
   u'criticism',
   u'science',
   u'world',
   u'authenticity'],
  [u'fault',
   u'film',
   u'maker',
   u'observation',
   u'adage',
   u'truth',
   u'way',
   u'story',
   u'<br',
   u'story',
   u'cracker',
   u'adventure',
   u'race',
   u'time',
   u'sprinkling',
   u'intelligence',
   u'twist',
   u'way.<br',
   u'fan',
   u'treasure',
   u'movie',
   u'mimic',
   u'vibe',
   u'fan',
   u'adventure',
   u'tale']],
 [[u'theater',
   u'dismay',
   u'atrocity',
   u'light',
   u'end',
   u'tunnel',
   u'company',
   u'demon',
   u'lesson.<br'],
  [u'girl'],
  [u'movie', u'thriller'],
  [u'job', u'actor'],
  [u'nomination'],
  [u'right', u'end'],
  [u'past'],
  [u'actor', u'jobs.<br', u'movie'],
  [u'explosion', u'sequence', u'end'],
  [u'job', u'tour', u'job', u'time', u'story', u'history', u'lesson'],
  [u'mind', u'child', u'list', u'explosion', u'killing', u'thousand'],
  [u'reason', u'story', u'score'],
  [u'epic', u'time', u'mix.<br', u'complaint', u'movie'],
  [u'chance', u'age', u'chance', u'son'],
  [u'thing', u'book', u'demon', u'knitt', u'movie']],
 [[u'fan', u'book', u'work', u'source', u'material', u'respect', u'work'],
  [u'intrigue', u'translate', u'film', u'virtue', u'eye', u'devotion'],
  [u'portrayal', u'glint', u'day'],
  [u'actor', u'effort', u'performances.<br', u'matter', u'lesson'],
  [u'film',
   u'boycott',
   u'film',
   u'course',
   u'million',
   u'ticket',
   u'sales.<br',
   u'story',
   u'science',
   u'piece',
   u'science',
   u'fiction',
   u'fiction'],
  [u'truth',
   u'person',
   u'book',
   u'element',
   u'story',
   u'screen',
   u'version',
   u'story',
   u'fact',
   u'installment',
   u'franchise',
   u'order',
   u'prequel',
   u'honesty',
   u'effectiveness',
   u'continuity',
   u'flow',
   u'work.<br',
   u'night',
   u'viewing',
   u'execution',
   u'ones.<br',
   u'rate']],
 [[u'book', u'movie', u'adaptation'],
  [u'game',
   u'rate',
   u'scope',
   u'thriller',
   u'race',
   u'time',
   u'puzzles.<br',
   u'plot',
   u'cast',
   u'fan'],
  [u'jean', u'shirt', u'blood', u'search'],
  [u'searcher',
   u'newcomer',
   u'portrayal',
   u'faith',
   u'calm',
   u'debate',
   u'science',
   u'religion'],
  [u'convert']],
 [[u'minute', u'music'],
  [u'movie', u'thriller', u'masterpiece', u'consideration'],
  [u'cinematography'],
  [u'opening',
   u'quantity',
   u'stunning',
   u'visual',
   u'clue',
   u'excellence',
   u'movie'],
  [u'storyline', u'twist', u'film', u'climax'],
  [u'film', u'compromise', u'religion', u'plenty', u'head'],
  [u'science', u'religion', u'religion', u'science']],
 [[u'adaptation', u'breath', u'book'],
  [u'movie'],
  [u'story', u'result'],
  [u'movie', u'end', u'thing'],
  [u'effect', u'sound', u'track'],
  [u'acting', u'character', u'development', u'phase'],
  [u'point', u'view', u'stuff', u'book', u'scene'],
  [u'book', u'puzzle', u'story', u'portrait'],
  [u'rush', u'time', u'way', u'problem', u'movie']],
 [[u'matter', u'movie'], [u'close']],
 [[u'mystery',
   u'science',
   u'experiment',
   u'blow',
   u'city.<br',
   u'record',
   u'majority',
   u'follower',
   u'award',
   u'winning',
   u'book',
   u'justice',
   u'half',
   u'hour',
   u'many.<br',
   u'book',
   u'attempt',
   u'mystery',
   u'murder',
   u'demon',
   u'scale',
   u'star',
   u'director',
   u'return.<br',
   u'person',
   u'demon',
   u'code',
   u'entertaining',
   u'read',
   u'critique',
   u'fan',
   u'adaptation',
   u'release.<br',
   u'picture',
   u'energy',
   u'exercise',
   u'night',
   u'activity',
   u'time',
   u'limitation',
   u'action',
   u'desperation',
   u'ante',
   u'excitement',
   u'code',
   u'plenty',
   u'twist',
   u'murder',
   u'sequences.<br',
   u'factor',
   u'release',
   u'element',
   u'murder'],
  [u'water',
   u'sequence',
   u'feeling',
   u'power',
   u'situation.<br',
   u'tag',
   u'thriller',
   u'tension',
   u'drama',
   u'issue',
   u'belief',
   u'working',
   u'over.<br',
   u'year',
   u'debate',
   u'discovery',
   u'symbol',
   u'character',
   u'light',
   u'controversy',
   u'pressing',
   u'circumstances.<br',
   u'writer',
   u'issue',
   u'dramas',
   u'action',
   u'sequence'],
  [u'scenario',
   u'election',
   u'pope',
   u'dealing',
   u'experiment',
   u'power',
   u'religion'],
  [u'debate',
   u'dialogue',
   u'tend',
   u'mind',
   u'novel',
   u'type',
   u'direction',
   u'return',
   u'way'],
  [u'camera', u'styling', u'pressure', u'screen', u'thank', u'style']],
 [[u'expert', u'book', u'deal', u'change', u'book', u'movie'],
  [u'movie', u'code'],
  [u'thing', u'movie', u'pace'],
  [u'feel', u'movie', u'company.<br', u'thing', u'book', u'movie', u'form'],
  [u'spoiler', u'movie', u'way'],
  [u'movie.<br', u'film', u'shot'],
  [u'walking', u'tour', u'day', u'movie', u'site', u'look', u'feel'],
  [u'job', u'scene', u'archive'],
  [u'course', u'access', u'area', u'archive'],
  [u'movie', u'job', u'eye', u'candy', u'movie', u'critic', u'public']],
 [[u'plenty', u'twist'],
  [u'demon'],
  [u'demon', u'style', u'film'],
  [u'seat', u'hour', u'bit.<br', u'movie', u'history'],
  [u'thing', u'movie', u'plot', u'spoiler'],
  [u'thing']],
 [[u'opinion', u'role'],
  [u'action', u'suspense', u'controversy'],
  [u'book', u'worry'],
  [u'book', u'let', u'scene', u'to.<br', u'film', u'movie', u'goer'],
  [u'fan']],
 [[u'code',
   u'knack',
   u'puzzle',
   u'demon',
   u'ante',
   u'puzzle',
   u'hour',
   u'limit.<br',
   u'cast',
   u'award',
   u'winning',
   u'actor',
   u'job',
   u'story'],
  [u'code', u'angle', u'time', u'bathroom', u'break', u'bit', u'return'],
  [u'demon',
   u'plot',
   u'action',
   u'level',
   u'throughout.<br',
   u'character',
   u'movie'],
  [u'portrayal', u'rank', u'victim', u'treatment', u'introduction'],
  [u'time',
   u'film',
   u'story',
   u'character',
   u'development',
   u'introduction',
   u'movie.<br',
   u'character',
   u'assistant',
   u'quest',
   u'line',
   u'bit',
   u'afterthought'],
  [u'role',
   u'thing',
   u'fade',
   u'background',
   u'more-so',
   u'partner.<br',
   u'plot',
   u'organization',
   u'revenge',
   u'manner'],
  [u'man', u'church', u'time', u'end', u'church'],
  [u'clue',
   u'team',
   u'scientist',
   u'colleague',
   u'die',
   u'hand',
   u'church',
   u'enemy.<br',
   u'cinematography',
   u'thing',
   u'demon',
   u'work',
   u'conclusion'],
  [u'ending', u'movie', u'off-guard'],
  [u'movie', u'bow'],
  [u'theater', u'movie', u'movie', u'principle'],
  [u'code', u'cover-up', u'group', u'sadist', u'demon', u'paint', u'brush'],
  [u'church', u'man', u'sin', u'evil', u'man', u'color', u'rank']],
 [[u'preview',
   u'today',
   u'demon',
   u'mind',
   u'uncertainty',
   u'hatred',
   u'fact',
   u'poster'],
  [u'mind',
   u'half',
   u'hour',
   u'cat',
   u'mouse',
   u'game',
   u'entertainment',
   u'value.<br',
   u'movie',
   u'novel'],
  [u'symbologist', u'jet', u'death', u're-election'],
  [u'threat',
   u'brotherhood',
   u'presence',
   u'time',
   u'bomb',
   u'kidnapping',
   u'cardinal'],
  [u'intellect', u'trust', u'task', u'finding'],
  [u'quest', u'scientist', u'co-creator', u'anti-matter'],
  [u'<br', u'movie', u'pace'],
  [u'minute',
   u'minute',
   u'bore',
   u'information',
   u'object',
   u'book',
   u'anticipated',
   u'action',
   u'sequence'],
  [u'read', u'paper', u'screen', u'way'],
  [u'<br', u'character', u'screen'],
  [u'performance', u'accent'],
  [u'performance'],
  [u'leader'],
  [u'performance', u'story', u'asset'],
  [u'<br',
   u'demon',
   u'movie',
   u'explosion',
   u'recreation',
   u'church',
   u'bomb',
   u'midnight',
   u'hour'],
  [u'job', u'adventure', u'time', u'criticism', u'dialogue', u'chase'],
  [u'<br', u'newcomer', u'threat', u'suspense', u'eye-candy', u'shot'],
  [u'fan',
   u'book',
   u'movie',
   u'change',
   u'blasphemy',
   u'inaccuracy',
   u'viewer',
   u'screen',
   u'time',
   u'shoulder'],
  [u'<br', u'book-to-movie', u'adaption', u'entertain.<br']],
 [[u'return',
   u'symbologist',
   u'adventure',
   u'demon',
   u'subject',
   u'nerve',
   u'faith'],
  [u'arm', u'film'],
  [u'action',
   u'piece',
   u'tourism',
   u'video',
   u'visitor',
   u'number',
   u'scene',
   u'model',
   u'used.<br',
   u'bulk',
   u'budget',
   u'set',
   u'ensemble',
   u'cast'],
  [u'void',
   u'character',
   u'lot',
   u'stake',
   u'film',
   u'scientist',
   u'lot',
   u'wing',
   u'battery',
   u'canister',
   u'anti-matter'],
  [u'book',
   u'fodder',
   u'course',
   u'knowledge',
   u'feud',
   u'love',
   u'equal.<br',
   u'hand',
   u'chew',
   u'scene',
   u'care',
   u'office',
   u'cardinal'],
  [u'surprise',
   u'reader',
   u'novel',
   u'performance',
   u'highlight',
   u'film',
   u'book',
   u'content',
   u'lot',
   u'plot',
   u'point',
   u'science',
   u'versus',
   u'religion',
   u'wealth',
   u'information',
   u'piece',
   u'work'],
  [u'book', u'year', u'film', u'lapse', u'set', u'action', u'piece'],
  [u'film', u'pace', u'breather'],
  [u'film',
   u'character',
   u'discussion',
   u'time',
   u'cup',
   u'tea',
   u'thing',
   u'book',
   u'page',
   u'page',
   u'action.<br',
   u'reviewer',
   u'demon',
   u'controversy',
   u'nerve',
   u'centre',
   u'faith'],
  [u'film',
   u'tourism',
   u'video',
   u'showcase',
   u'touristy',
   u'landmark',
   u'world',
   u'visit'],
  [u'area',
   u'catacomb',
   u'archive',
   u'bound',
   u'walk',
   u'book',
   u'film',
   u'novel',
   u'bit',
   u'significance',
   u'landmark',
   u'character',
   u'plot'],
  [u'entertainment']],
 [[u'teenager', u'spending', u'vacation', u'friend'],
  [u'suicide', u'crush'],
  [u'way', u'werewolf', u'eating', u'heart'],
  [u'movie', u'humor', u'movie'],
  [u'effect', u'soundtrack', u'song', u'band'],
  [u'story', u'teenager', u'werewolf', u'city'],
  [u'fan', u'werewolf', u'humor', u'movie'],
  [u'vote']],
 [[u'movie',
   u'romance',
   u'suspense',
   u'horror',
   u'stuff',
   u'half',
   u'movie',
   u'guy',
   u'girl',
   u'bungee'],
  [u'cemetery', u'scene', u'chill', u'wall'],
  [u'scene', u'seat'],
  [u'friend', u'girl', u'cemetery', u'lead', u'character(sorry'],
  [u'actor', u'job', u'make-up', u'crew'],
  [u'church', u'person', u'church', u'house'],
  [u'movie', u'time'],
  [u'person', u'movie', u'try']],
 [[u'movie', u'think', u'it`s'],
  [u'that`s', u'person', u'movie.<br', u'fx', u'mind', u'movie'],
  [u'opinion',
   u'guy',
   u'movie',
   u'sexiness',
   u'movie.<br',
   u'lot',
   u'wisecrack',
   u'movie'],
  [u'movie', u'collection'],
  [u'movie',
   u'horror',
   u'movie',
   u'driller',
   u'killer',
   u'suspirium',
   u'dario',
   u'movie',
   u'film',
   u'collection',
   u'werewolf',
   u'movie',
   u'i`ll',
   u'point'],
  [u'complaint', u'movie', u'movie', u'movie', u'there.<br']],
 [[u'movie'],
  [u'movie', u'time'],
  [u'movie'],
  [u'movie', u'ad', u'comedys'],
  [u'movie', u'switching', u'stuff', u'barrier'],
  [u'thought', u'movie', u'way', u'thinking'],
  [u'movie', u'twist', u'touch'],
  [u'movie', u'<br']],
 [[u'advance',
   u'screening',
   u'movie',
   u'thinking',
   u'minute',
   u'line',
   u'plot',
   u'kind',
   u'postman',
   u'display',
   u'blundering',
   u'time'],
  [u'depth', u'emotion'],
  [u'effect'],
  [u'actor', u'film', u'attitude', u'thought', u'film', u'year'],
  [u'movie'],
  [u'epic', u'commentary', u'film'],
  [u'story', u'topic', u'way', u'audience', u'level', u'empathy'],
  [u'work']],
 [[u'movie', u'entertaining'],
  [u'transformation', u'sequence', u'effect', u'scene', u'effect'],
  [u'transformation',
   u'lot',
   u'werewolf',
   u'transformation',
   u'movie',
   u'werewolf',
   u'dog'],
  [u'<br', u'grade']],
 [[u'attempt', u'time', u'movie', u'right'],
  [u'film', u'remake', u'movie', u'well.<br', u'similarity', u'backpacker'],
  [u'thing', u'stand', u'blend', u'humor', u'horror'],
  [u'person', u'film', u'youth', u'today', u'generation', u'movie', u'crap'],
  [u'film', u'horror', u'film', u'today'],
  [u'lot', u'person', u'film', u'horror', u'today'],
  [u'path', u'<br', u'attempt', u're-creating'],
  [u'film'],
  [u'attempt']],
 [[u'feature', u'night'],
  [u'year',
   u'transformation',
   u'sequence',
   u'standard',
   u'film',
   u'bit',
   u'scar',
   u'lot',
   u'laugh',
   u'fashion',
   u'day',
   u'film',
   u'sense',
   u'time',
   u'transformation',
   u'technology',
   u'time'],
  [u'movie',
   u'lot',
   u'performance',
   u'liking',
   u'figure',
   u'direction',
   u'script',
   u'bit',
   u'shine',
   u'finesse'],
  [u'movie'],
  [u'discussion', u'sequel', u'title', u'dc', u'fun', u'dog', u'scare'],
  [u'transfer', u'dolby', u'sound', u'upconvert']],
 [[u'character', u'movie', u'return', u'movie'],
  [u'sequel', u'werewolf', u'horror', u'movie'],
  [u'werewolf', u'film', u'time'],
  [u'relationship', u'nightmare', u'secret', u'city', u'<br', u'film'],
  [u'chemistry'],
  [u'thumb'],
  [u'<br', u'effect', u'werewolf'],
  [u'humor', u'movie'],
  [u'scene', u'time.<br', u'werewolf', u'sequel', u'predecessor', u'movie'],
  [u'fan', u'werewolf']],
 [[u'lad', u'way', u'stunt', u'babe', u'love'],
  [u'bungee-jump', u'attempt'],
  [u'attempt',
   u'girl',
   u'secret',
   u'friend',
   u'adventure',
   u'action',
   u'romance',
   u'humor'],
  [u'film', u'number', u'time', u'experience', u'film', u'sequel']],
 [[u'emotion', u'film', u'forerunner,<br'],
  [u'film', u'moment', u'horror', u'tale'],
  [u'version', u'edge', u'class', u'thing', u'film', u'fun'],
  [u'<br', u'werewolf', u'purist', u'film', u'garbage', u'version', u'mark'],
  [u'version'],
  [u'<br',
   u'minute',
   u'movie',
   u'laughs',
   u'scene',
   u'balloon',
   u'restaurant'],
  [u'character'],
  [u'actress',
   u'face',
   u'beauty',
   u'film',
   u'point',
   u'horror',
   u'start',
   u'effect'],
  [u'lack',
   u'profanity',
   u'film',
   u'f-word',
   u'plenty',
   u'remark',
   u'scene',
   u'guy',
   u'bar',
   u'cross'],
  [u'soundtrack', u'metal', u'guy']],
 [[u'film', u'year'],
  [u'driver'],
  [u'don\xb4t', u'opportunity', u'film', u'fall', u'love']],
 [[u'way', u'comedy', u'future', u'return'],
  [u'plot', u'secret', u'publicity'],
  [u'world', u'chemistry', u'guy', u'laugh', u'time']],
 [[u'score', u'coup', u'debut'],
  [u'chemistry'],
  [u'plot', u'film'],
  [u'job', u'grace', u'grandfather'],
  [u'character', u'actor', u'card', u'buddy'],
  [u'husband', u'family.<br', u'family', u'marriage'],
  [u'reference',
   u'word',
   u'context',
   u'humor.<br',
   u'background',
   u'tune',
   u'return']],
 [[u'fan', u'person', u'expectation', u'movie'],
  [u'flaw', u'number', u'chemistry'],
  [u'movie', u'actor'],
  [u'past', u'flaw', u'comedy'],
  [u'scenario', u'heaven'],
  [u'movie.<br']],
 [[u'man', u'restaurant', u'film', u'fun'], [u'actress', u'screen']],
 [[u'movie', u'kind'],
  [u'premise',
   u'character',
   u'attention',
   u'right',
   u'beginning',
   u'affection',
   u'too.<br',
   u'job',
   u'debut',
   u'job',
   u'writing'],
  [u'movie']],
 [[u'romance', u'movie', u'couple', u'appreciation'], [u'goof', u'movie']],
 [[u'fan',
   u'life',
   u'character',
   u'job',
   u'debut.<br',
   u'chick',
   u'flick',
   u'mind',
   u'story',
   u'touch',
   u'emotion',
   u'sort',
   u'reactions.<br',
   u'film',
   u'life',
   u'person',
   u'life',
   u'situation'],
  [u'coincidence',
   u'film)<br',
   u'love',
   u'story',
   u'man',
   u'woman',
   u'love',
   u'family',
   u'friend']],
 [[u'film', u'entertaining'],
  [u'performance', u'man'],
  [u'folk', u'connection', u'heart']],
 [[u'reviews', u'return', u'opinion', u'movie'],
  [u'need', u'admiration', u'movie'],
  [u'actress', u'director', u'script', u'writer'],
  [u'movie', u'humanity', u'tenderness', u'sense', u'humor'],
  [u'review', u'attention'],
  [u'return', u'gem', u'movie']],
 [[u'movie'],
  [u'actor', u'opportunity', u'role', u'movie'],
  [u'society', u'wealth', u'health', u'youth', u'movie', u'person'],
  [u'moment', u'male', u'brain'],
  [u'leg', u'link', u'reality'],
  [u'scene', u'hunting', u'bike']],
 [[u'movie', u'sweetness', u'person'],
  [u'premise', u'suspension', u'disbelief', u'trouble']],
 [[u'couple'],
  [u'lot', u'couple', u'sleepless'],
  [u'movie'],
  [u'job'],
  [u'line', u'crack', u'spoiler', u'love'],
  [u'ape',
   u'hand',
   u'thing',
   u'grace',
   u'example',
   u'too.<br',
   u'spoiler',
   u'end',
   u'thing',
   u'movie'],
  [u'man', u'wife', u'year', u'woman', u'life'],
  [u'date', u'year', u'love', u'woman', u'life', u'connection', u'movie'],
  [u'time', u'time', u'scene', u'restaurant', u'date', u'water'],
  [u'romantic-comedy', u'door', u'rent']],
 [[u'return', u'gem', u'movie'],
  [u'star', u'cast', u'day', u'tale'],
  [u'joke', u'girl', u'film'],
  [u'approach', u'everday', u'alter-ego', u'mulder', u'x-file'],
  [u'date', u'movie']],
 [[u'movie', u'fun', u'today'],
  [u'movie', u'person', u'tv', u'sit-com'],
  [u'situation', u'story', u'movie'],
  [u'fake', u'editing'],
  [u'video']],
 [[u'movie', u'pretense', u'art'],
  [u'script', u'character', u'acting'],
  [u'drama', u'wife', u'story', u'character'],
  [u'attempt',
   u'quality',
   u'writing',
   u'drama',
   u'adult',
   u'movie',
   u'type',
   u'drama'],
  [u'offering']],
 [[u'woman', u'list', u'heart', u'transplant'],
  [u'year', u'person', u'life'],
  [u'friend', u'date', u'waitress', u'restaurant', u'date'],
  [u'movie', u'comedy'],
  [u'star', u'couple', u'heaven'],
  [u'place', u'neighborhood', u'setting'],
  [u'love', u'story', u'grace', u'movie']],
 [[u'chemistry', u'layer', u'clothing'],
  [u'notch'],
  [u'poetry'],
  [u'team', u'film', u'moment', u'screen']],
 [[u'movie'],
  [u'combination', u'talent'],
  [u'fan', u'movie'],
  [u'talent', u'fan', u'series'],
  [u'love', u'story'],
  [u'cast'],
  [u'job'],
  [u'way', u'soundtrack']],
 [[u'hand',
   u'comedy',
   u'film',
   u'heart',
   u'transplant',
   u'patient',
   u'connection',
   u'wife'],
  [u'film',
   u'story',
   u'line',
   u'movie',
   u'film',
   u'keeper.<br',
   u'scene',
   u'dog',
   u'dog',
   u'wife'],
  [u'friend', u'replacement', u'scene', u'date', u'waitress'],
  [u'date', u'role', u'grandfather'],
  [u'film',
   u'round',
   u'comedy',
   u'aspect',
   u'film.<br',
   u'film',
   u'story',
   u'work',
   u'audience',
   u'intelligence']],
 [[u'film', u'pantheon', u'comedy'], [u'cast', u'character']],
 [[u'summer',
   u'blockbuster',
   u'season',
   u'film',
   u'bit',
   u'shadow',
   u'dollar',
   u'effect',
   u'movie',
   u'story',
   u'core',
   u'number',
   u'picture',
   u'actress'],
  [u'story',
   u'comedy',
   u'life',
   u'performance',
   u'veteran',
   u'shot',
   u'breaking',
   u'mold'],
  [u'film', u'work', u'thing'],
  [u'role', u'lead', u'grace', u'family', u'friend'],
  [u'stitch', u'stable', u'force'],
  [u'film',
   u'performance',
   u'actor',
   u'calibre',
   u'finale',
   u'career.<br',
   u'return',
   u'fun',
   u'story',
   u'film',
   u'favorite']],
 [[u'film', u'theater'],
  [u'job', u'screenplay', u'commentary'],
  [u'job', u'character'],
  [u'film',
   u'job',
   u'importance',
   u'family',
   u'rarity',
   u'film',
   u'today',
   u'reflection',
   u'director',
   u'comment'],
  [u'life', u'performance', u'scene'],
  [u'movie'],
  [u'creator', u'film'],
  [u'piece', u'viewing', u'friend'],
  [u'lot', u'movie', u'year', u'feeling', u'satisfaction', u'film']],
 [[u'casting', u'respect'],
  [u'laugh', u'scenario'],
  [u'weekend'],
  [u'heart'],
  [u'honey', u'sip', u'cup', u'chocolate', u'enjoy', u'presence'],
  [u'family', u'expression', u'way']],
 [[u'movie', u'yesterday', u'intern', u'office', u'day'],
  [u'plot', u'way', u'dog', u'door'],
  [u'dog',
   u'folk',
   u'restaurant',
   u'person',
   u'group',
   u'topic',
   u'discussion'],
  [u'wedding', u'end.<br', u'movie', u'award']],
 [[u'star',
   u'film',
   u'comedy',
   u'man',
   u'time',
   u'dream',
   u'adventure',
   u'body'],
  [u'version', u'protagonist', u'quarterback', u'then-los'],
  [u'version', u'lead', u'character', u'comedian.<br', u'comedian'],
  [u'kind', u'actor'],
  [u'dream', u'night'],
  [u'joke', u'delivery'],
  [u'bike', u'messenger', u'street', u'way', u'material'],
  [u'body', u'tenth', u'angel'],
  [u'manager', u'body'],
  [u'trouble', u'body', u'man'],
  [u'fella', u'kind', u'thing', u'man', u'country'],
  [u'<br', u'course', u'body', u'hospital', u'worker'],
  [u'male', u'female', u'body', u'guy'],
  [u'<br', u'shot', u'role', u'opinion'],
  [u'lot', u'comedian', u'course', u'role', u'routine', u'script', u'thing'],
  [u'lot', u'fun', u'role', u'bent', u'fun']],
 [[u'love', u'story', u'character', u'romance'],
  [u'storyline', u'tear', u'moment'],
  [u'relationship'],
  [u'hit?<br'],
  [u'film']],
 [[u'story', u'cast'],
  [u'boyfriend', u'wife', u'death', u'wife', u'heart', u'scream'],
  [u'matter', u'thought'],
  [u'love', u'destiny', u'all.(sigh)<br', u'timing', u'scene'],
  [u'pair']],
 [[u'job', u'co-writing', u'co-starring', u'film'],
  [u'talent', u'movie'],
  [u'director', u'commentary']],
 [[u'daughter', u'age', u'screening', u'movie', u'night'],
  [u'entertaining', u'movie'],
  [u'male', u'lead', u'performance'],
  [u'scene', u'laugh', u'scene', u'transplant', u'donee']],
 [[u'trailer', u'film', u'film'],
  [u'box', u'office', u'guru', u'stretch', u'gut'],
  [u'case', u'apathy'],
  [u'way', u'person', u'interview', u'actor'],
  [u'film', u'reason', u'buck', u'screen'],
  [u'thing', u'man', u'return', u'heart', u'place'],
  [u'story', u'class', u'grace'],
  [u'film',
   u'bit',
   u'premise',
   u'chance',
   u'pain',
   u'reason',
   u'film',
   u'story',
   u'cast'],
  [u'duchovney'],
  [u'scene', u'home', u'wife', u'floor', u'house'],
  [u'dog'],
  [u'moment', u'pain', u'character', u'movie'],
  [u'pain', u'moment', u'actor', u'loss'],
  [u'stuff.<br', u'strength', u'film'],
  [u'pot', u'character', u'share', u'bond'],
  [u'share', u'pub'],
  [u'scale', u'culture'],
  [u'man', u'homeland', u'granddaughter', u'niece'],
  [u'scenario',
   u'comedy',
   u'here.<br',
   u'share',
   u'moment',
   u'middle',
   u'couple',
   u'point',
   u'humility',
   u'keg',
   u'stomach',
   u'laugh'],
  [u'family', u'kid', u'time', u'wife', u'quality', u'time'],
  [u'elegance'],
  [u'<br', u'story', u'love', u'love', u'power', u'friendship', u'family'],
  [u'return', u'romance', u'admiration', u'role', u'picture', u'character'],
  [u'movie', u'flavour.<br', u'sucker', u'romance', u'film']],
 [[u'time', u'love'],
  [u'grief', u'scene'],
  [u'line', u'ache', u'grace'],
  [u'area', u'couple'],
  [u'week'],
  [u'day']],
 [[u'story',
   u'intervention',
   u'man',
   u'wife',
   u'accident',
   u'woman',
   u'wife',
   u'heart'],
  [u'performance', u'to-be-lover', u'chance'],
  [u'story', u'friend', u'family', u'time', u'trial'],
  [u'grandfather', u'scene'],
  [u'friend', u'wit', u'encouragement', u'sister', u'scene', u'husband'],
  [u'scene', u'writing', u'story'],
  [u'movie', u'family', u'friend', u'person', u'time']],
 [[u'boyfriend', u'movie', u'movie', u'more.not', u'movie'],
  [u'movie', u'job', u'is.i'],
  [u'movie'],
  [u'storyline', u'thumb']],
 [[u'action',
   u'movie',
   u'fan',
   u'today',
   u'preview',
   u'ad',
   u'movie',
   u'goodnight',
   u'pay-tv',
   u'special.<br',
   u'surprise'],
  [u'movie'],
  [u'problem',
   u'presence',
   u'hole',
   u'plot',
   u'rest',
   u'entertaining',
   u'action',
   u'movie',
   u'transformation',
   u'wife-teacher',
   u'agent',
   u'amnesia',
   u'idea'],
  [u'action', u'scene', u'stunt'],
  [u'line', u'chemistry'],
  [u'action',
   u'heroine',
   u'stunts.<br',
   u'movie',
   u'performance',
   u'box',
   u'office',
   u'critic',
   u'reviewer',
   u'kind',
   u'public',
   u'time',
   u'female',
   u'lead',
   u'roles.<br']],
 [[u'action', u'film'],
  [u'portrayal', u'nail', u"charly'", u'mother', u'way', u'liner'],
  [u'sure',
   u'hole',
   u'story',
   u'flick',
   u'edge',
   u'seat',
   u'end.<br',
   u'choice',
   u'role',
   u'versatility',
   u'actress',
   u'role',
   u'mother',
   u'movie'],
  [u'yvonne', u'newcomer'],
  [u'film',
   u'trend',
   u'character',
   u'diversion',
   u'male',
   u'stereotype',
   u'disaster',
   u'next.<br',
   u'movie',
   u'person'],
  [u'film', u'action', u'fan', u'scene', u'action']],
 [[u'bin', u'knowledge', u'fan', u'crime', u'movie'],
  [u'fun', u'entertaining', u'movie', u'performance'],
  [u'movie', u'course', u'performance', u'standout', u'film'],
  [u'pacino', u'performance', u'gangster', u'city'],
  [u'damsel', u'distress', u'depth', u'performance'],
  [u'attitude', u'fun', u'movie', u'acting', u'script', u'try']],
 [[u'movie', u'watch'],
  [u'movie.<br',
   u'actor',
   u'story',
   u'action',
   u'scene',
   u'goodnight',
   u'<br',
   u'star']],
 [[u'<br',
   u'example',
   u'affliction',
   u'film',
   u'concept',
   u'assassin',
   u'memory',
   u'consciousness',
   u'setup',
   u'writer',
   u'thing',
   u'path',
   u'taste',
   u'lot'],
  [u'baddy', u'sidekick', u'turn', u'pre-pulp', u'day', u'effort', u'wife'],
  [u'character',
   u'film',
   u'fact',
   u'it.<br',
   u'film',
   u'hollywood',
   u'actioner'],
  [u'finger', u'cold', u'edge', u'feel', u'air', u'streak', u'way'],
  [u'photography',
   u'night',
   u'character',
   u'dream',
   u'mirror',
   u'eye',
   u'man',
   u'nemesis',
   u'daughter',
   u'comeback',
   u'wheel',
   u'car',
   u'blood',
   u'mouth',
   u'atmosphere',
   u'bit',
   u'film']],
 [[u'cinema', u'experience', u'thriller', u'sense', u'humor'],
  [u'rent', u'eye', u'past', u'way', u'head'],
  [u'line', u'interaction', u'tv', u'image']],
 [[u'movie', u'appreciation', u'vote'],
  [u'action',
   u'fine',
   u'script',
   u'actor',
   u'chemistry',
   u'director',
   u'director',
   u'film'],
  [u'rollercoaster-ride', u'status'],
  [u'film',
   u'action',
   u'buddyism',
   u'sidekick',
   u'lot',
   u'room',
   u'share',
   u'action',
   u'killer',
   u'wisecrack'],
  [u'movie', u'level', u'theme', u'plot'],
  [u'quiet', u'night']],
 [[u'comedy', u'action', u'stunts'],
  [u'time'],
  [u'moment'],
  [u'bridge', u'explosion', u'sound', u'truck', u'sound'],
  [u'dvd', u'audio'],
  [u'moment', u'guy', u'daughter', u'film', u'action', u'fan', u'publicity']],
 [[u'pair', u'screen'],
  [u'action',
   u'movie',
   u'twist',
   u'ending',
   u'audience',
   u'filmmaker',
   u'movies.<br']],
 [[u'time', u'action', u'screenwriter'],
  [u'stardom'],
  [u'movie', u'bit', u'fan', u'action', u'film', u'thrill']],
 [[u'sure', u'movie'],
  [u'hole', u'plot', u'action'],
  [u'movie', u'flaw', u'virtue'],
  [u'movie', u'maker', u'undertaking', u'movie'],
  [u'movie'],
  [u'preposterousness', u'movie', u'screenplay'],
  [u'light', u'event'],
  [u'movie', u'tradegy', u'collapse', u'way', u'movie', u'events.<br']],
 [[u'movie', u'play', u'role', u'movie'],
  [u'line', u'action'],
  [u'kiddy', u'movie', u'size']],
 [[u'action', u'fan', u'screenplay', u'guy', u'action', u'set', u'piece'],
  [u'action', u'movie']],
 [[u'end', u'epic', u'founding', u'eye', u'iconoclast'],
  [u'film', u'entertaining', u'message', u'star'],
  [u'end',
   u'decade',
   u'kind',
   u'epic',
   u'pretense',
   u'entertainment',
   u'bunch',
   u'actor',
   u'time',
   u'ton',
   u'makeup.<br',
   u'individual',
   u'volume',
   u'range',
   u'man',
   u'player'],
  [u'film',
   u'cartoon',
   u'character',
   u'strip',
   u'screenplay.<br',
   u'city',
   u'mobster',
   u'boy',
   u'competition'],
  [u'target', u'meantime', u'individual'],
  [u'hero', u'sort', u'thicket', u'crime?<br', u'spirit', u'fun', u'film'],
  [u'person',
   u'cartoon',
   u'creation',
   u'strip',
   u'author',
   u'exercise',
   u'slice',
   u'ham',
   u'film.<br',
   u'nomination',
   u'guy',
   u'pacino',
   u'boy',
   u'screen',
   u'time'],
  [u'fact', u'somebody', u'score', u'film', u'fun'],
  [u'heavyweight',
   u'club',
   u'torch',
   u'singer',
   u'film',
   u'movie',
   u'picture',
   u'afternoon',
   u'serial'],
  [u'recording', u'gem.<br', u'strip', u'screen']],
 [[u'way', u'samantha', u'spy', u'year'],
  [u'plot', u'story', u'job', u'fiddle', u'job'],
  [u'explosion', u'action', u'scene', u'scene'],
  [u'kid', u'nerve', u'end', u'watch', u'car'],
  [u'kid', u'film', u'movie', u'kid', u'film'],
  [u'movie', u'box', u'office', u'man', u'movie'],
  [u'year',
   u'person',
   u'movie',
   u'mark',
   u'average',
   u'film',
   u'site',
   u'year'],
  [u'hope', u'action', u'film']],
 [[u'movie', u'character', u'type', u'control', u'control', u'ride'],
  [u'timing', u'line', u'point', u'movie'],
  [u'preformance', u'samantha'],
  [u'action', u'hero', u'actress'],
  [u'action', u'movie'],
  [u'effect', u'year'],
  [u'screen', u'stuff', u'acting.<br'],
  [u'drama', u'person', u'movie', u'time'],
  [u'half', u'half'],
  [u'weather', u'tank'],
  [u'thing'],
  [u'sign', u'room', u'land', u'tree'],
  [u'fun', u'movie']],
 [[u'action', u'flick'],
  [u'role'],
  [u'actress'],
  [u'movie'],
  [u'way', u'woman', u'character', u'fun'],
  [u'film'],
  [u'duo']],
 [[u'story', u'theme', u'susie'],
  [u'beginning', u'direction'],
  [u'pace', u'action', u'fun', u'story', u'lot', u'explosion', u'mayhem']],
 [[u'assassin', u'identity', u'schoolteacher', u'family', u'life', u'town'],
  [u'employer'],
  [u'guy'],
  [u'mother', u'family', u'life'],
  [u'guy', u'daughter'],
  [u'action', u'scene', u'movie']],
 [[u'scene', u'film', u'punch'],
  [u'place', u'train', u'station', u'protagonist', u'assassin', u'weapon'],
  [u'hall', u'train', u'station', u'corpse', u'person', u'crossfire'],
  [u'action', u'flick'],
  [u'action', u'movie', u'violence', u'plot', u'element'],
  [u'spite', u'shootout', u'person'],
  [u'violence', u'guy', u'guy', u'guy'],
  [u'bit', u'sense', u'hint', u'hit'],
  [u'scene', u'scene', u'cargo', u'plane', u'person', u'scenario'],
  [u'edge'],
  [u'violence'],
  [u'liner',
   u'style',
   u'echo',
   u'sarcasm',
   u'film',
   u'wisecrack',
   u'moment',
   u'action'],
  [u'plot', u'intent', u'action', u'film'],
  [u'villain', u'revenge', u'grab', u'power'],
  [u'film',
   u'trilogy',
   u'action',
   u'film',
   u'style',
   u'film',
   u'year',
   u'screen.<br',
   u'aspect',
   u'hero',
   u'heroine'],
  [u'heroine', u'cigarette'],
  [u'movie', u'action-heroine', u'role', u'hit'],
  [u'set', u'piece', u'action', u'film'],
  [u'explosion',
   u'chemical',
   u'bomb',
   u'display',
   u'movie',
   u'pyrotechnic',
   u'law',
   u'physics',
   u'break'],
  [u'formula', u'formula']],
 [[u'movie', u'trash', u'action', u'film'],
  [u'action', u'sequence', u'film'],
  [u'performance', u'shame', u'sequel'],
  [u'sidekick', u'luck', u'eye', u'buck'],
  [u'thrill'],
  [u'mind', u'film', u'action', u'flick', u'fortune', u'script'],
  [u'time', u'selling', u'screenplay', u'worth', u'penny'],
  [u'audience', u'movie', u'chance', u'cause', u'film'],
  [u'live', u'goodnight']],
 [[u'year',
   u'female',
   u'movie',
   u'character',
   u'ass',
   u'understatement',
   u'job',
   u'movie.<br',
   u'action',
   u'movie',
   u'entertaining.<br',
   u'alter-ego',
   u'rifle',
   u'hotel',
   u'room',
   u'chill',
   u'movie',
   u'<br',
   u'role',
   u'tattoed',
   u'girl',
   u'shhhhhhhhhhhhhh']],
 [[u'film', u'female', u'lot', u'butt', u'film', u'hope', u'entertainment'],
  [u'action', u'humor', u'wit', u'film', u'film', u'time'],
  [u'screen', u'presence', u'respect', u'it.<br', u'samantha'],
  [u'woman', u'body'],
  [u'guy', u'conscience.<br', u'film']],
 [[u'film', u'rampage', u'action', u'comedy', u'start'],
  [u'chemistry', u'role', u'excitement', u'anticipation', u'suspicion'],
  [u'effect'],
  [u'emotion']],
 [[u'year', u'movie'],
  [u'movie', u'person'],
  [u'<br', u'film', u'thank'],
  [u'writer', u'film'],
  [u'person', u'film', u'success'],
  [u'type', u'effect', u'essence', u'ship'],
  [u'film', u'sinking', u'ship', u'film', u'day'],
  [u'silverware', u'goodness'],
  [u'movie',
   u'person',
   u'hearing',
   u'word',
   u'form',
   u'advertisement',
   u'mind',
   u'good',
   u'worth',
   u'theater',
   u'drove',
   u'movie',
   u'time'],
  [u'movie', u'buildup'],
  [u'critic', u'money', u'film', u'budget', u'film'],
  [u'thing'],
  [u'story'],
  [u'actor', u'job'],
  [u'work', u'work', u'screen']],
 [[u'book', u'fan', u'blood'],
  [u'innocence', u'book', u'villain', u'appearance', u'disorder', u'fun'],
  [u'character', u'crime', u'power'],
  [u'child', u'atmosphere', u'color', u'red', u'orange', u'yellow'],
  [u'film', u'anybody', u'child'],
  [u'boy', u'zest'],
  [u'babe', u'villain', u'film', u'boy', u'toy']],
 [[u'person', u'film'],
  [u'standard', u'film', u'enjoyment', u'sake'],
  [u'enjoyment',
   u'act',
   u'film',
   u'reason',
   u'them?<br',
   u'action',
   u'film',
   u'sense',
   u'word'],
  [u'sure', u'hole', u'plot', u'semi', u'flow', u'film'],
  [u'fan', u'character'],
  [u'opinion',
   u'appearance',
   u'trick.<br',
   u'film',
   u'hand',
   u'character',
   u'villain'],
  [u'decision', u'approach', u'counterpoint', u'action', u'scene'],
  [u'actor',
   u'expression',
   u'point',
   u'case',
   u'scene',
   u'freezer',
   u'daughter'],
  [u'film',
   u'moment',
   u'revelation',
   u'dialogue',
   u'eye',
   u'story.<br',
   u'plot'],
  [u'housewife', u'amnesia', u'assassin'],
  [u'memory', u'return', u'person', u'assassin'],
  [u'bit'],
  [u'journey']],
 [[u'goodnight', u'action', u'thriller', u'career', u'breakthrough'],
  [u'plot'],
  [u'fight',
   u'scene',
   u'treat',
   u'eye',
   u'plotline',
   u'hours.<br',
   u'slick',
   u'sense',
   u'style',
   u'action',
   u'clich'],
  [u'action', u'chick', u'wife', u'role'],
  [u'player'],
  [u'film', u'baddie'],
  [u'<br', u'break', u'actioner', u'ground', u'actioner', u'year'],
  [u'fun', u'popcorn', u'entertainment']],
 [[u'review',
   u'reviews',
   u'movie',
   u'something.<br',
   u'plot',
   u'point',
   u'review'],
  [u'non-spoiler', u'version', u'review', u'butt', u'movie', u'lot', u'fun'],
  [u'action',
   u'heroine',
   u'torn',
   u'life',
   u'housewife',
   u'mother',
   u'memory',
   u'life'],
  [u'performance',
   u'facet',
   u'character',
   u'perfectly.<br',
   u'performance',
   u'character'],
  [u'job', u'sidekick', u'character'],
  [u'line', u'movie', u'movie', u'in.<br'],
  [u'story', u'lot', u'twist']],
 [[u'film', u'way', u'world'],
  [u'film', u'world', u'sense', u'world', u'logic'],
  [u'world',
   u'ability',
   u'love',
   u'hate',
   u'film.<br',
   u'film.<br',
   u'beginning',
   u'premise',
   u'woman',
   u'memory'],
  [u'film',
   u'film',
   u'hour',
   u'chase.<br',
   u'action',
   u'film',
   u'brain',
   u'thing',
   u'logic',
   u'attention',
   u'twist'],
  [u'deal', u'person', u'way'],
  [u'effort', u'reality', u'door']],
 [[u'schoolteacher', u'amnesia', u'government', u'assassin'],
  [u'man', u'detective', u'effect', u'one-liner'],
  [u'action', u'silly', u'time'],
  [u'movie', u'time?<br', u'fun', u'villain'],
  [u'movie', u'time'],
  [u'movie', u'fun', u'instead.<br', u'movie']],
 [[u'box', u'office', u'success'],
  [u'two-word',
   u'tough-guy',
   u'title',
   u'proportion',
   u'crowd',
   u'kiss',
   u'goodnight'],
  [u'action', u'movie'],
  [u'reason', u'fact', u'character', u'affection'],
  [u'guy', u'touch', u'order'],
  [u'charm', u'half', u'character'],
  [u'fiddle', u'change'],
  [u'compliment.<br', u'series', u'way']],
 [[u'<br',
   u'action',
   u'lot',
   u'dialogue',
   u'fun',
   u'intrigue',
   u'stuff',
   u'place'],
  [u'chemistry'],
  [u'fact',
   u'action',
   u'lead',
   u'turn-about.<br',
   u'movie',
   u'dozen',
   u'time',
   u'film',
   u'rotation',
   u'month'],
  [u'movie',
   u'film',
   u'event',
   u'quest',
   u'memory',
   u'back.<br',
   u'folk',
   u'disbelief']],
 [[u'action', u'movie'],
  [u'script', u'delivery', u'chemistry', u'principal', u'sequel'],
  [u'danger', u'checkerboard', u'scene', u'action', u'scene', u'scene'],
  [u'moment'],
  [u'<br', u'role', u'thing', u'character', u'career'],
  [u'hit-man', u'super-cool', u'soldier'],
  [u'schmuck',
   u'woman',
   u'odyssey',
   u'secret',
   u'story',
   u'character',
   u'amnesia',
   u'writer',
   u'director',
   u'condition',
   u'personality',
   u'disorder.<br',
   u'caine',
   u'identity',
   u'personality'],
  [u'trauma',
   u'half-hour',
   u'movie',
   u'personality',
   u'material',
   u'life',
   u'detective',
   u'facilitate',
   u'resurfacing'],
  [u'timing', u'target', u'samantha', u'herself.<br', u'personality'],
  [u'bit',
   u'dialogue',
   u'warrior',
   u'personality',
   u'father',
   u'year',
   u'psyche',
   u'samantha',
   u'identity',
   u'personality'],
  [u'mother',
   u'reunion',
   u'daughter',
   u'break',
   u'struggle',
   u'integration',
   u'movie',
   u'end.<br',
   u'quote',
   u'film:<br',
   u'sharpshooter?"<br',
   u'ass'],
  [u'sock',
   u'jaw',
   u'yell',
   u'pop',
   u'weasel\'".<br',
   u'couple',
   u'dozen',
   u'here.<br',
   u'action',
   u'hero',
   u'fact'],
  [u'<br'],
  [u'dozen', u'time'],
  [u'holiday', u'flick', u'shelf']],
 [[u'telecast',
   u'production',
   u'justice',
   u'aspect',
   u'version',
   u'production',
   u'design',
   u'wheeling',
   u'multi-set',
   u'trapdoor'],
  [u'staging', u'slashing.<br', u'performance', u'person'],
  [u'right', u'cue', u'time', u'song'],
  [u'fact', u'actress', u'degree'],
  [u'cockney', u'accent', u'bit'],
  [u'thing', u'performance', u'theatre', u'anthem', u'production']],
 [[u'case'],
  [u'version'],
  [u'character'],
  [u'performance'],
  [u'personality',
   u'story.<br',
   u'humor',
   u'song',
   u'expression',
   u'emotion',
   u'song',
   u'rage',
   u'vengeance',
   u'distress.<br',
   u'play',
   u'time']],
 [[u'book', u'hero'],
  [u'movie', u'set', u'cast', u'offshoot', u'script'],
  [u'term', u'action', u'plot'],
  [u'reason', u'movie', u'star', u'time', u'film'],
  [u'<br', u'person', u'job', u'film'],
  [u'belong', u'movie', u'job'],
  [u'dude'],
  [u'guy', u'guy'],
  [u'<br', u'film'],
  [u'thing'],
  [u'thing', u'movie'],
  [u'child', u'cool', u'movie', u'set', u'writing', u'cast', u'movie'],
  [u'<br', u'finale'],
  [u'scale', u'film', u'bang'],
  [u'movie', u'book', u'color', u'costume', u'makeup'],
  [u'makeup', u'villain'],
  [u'life', u'character'],
  [u'movie'],
  [u'book', u'adaptation', u'time'],
  [u'course', u'movie', u'term']],
 [[u'play',
   u'year',
   u'comfort',
   u'home',
   u'note',
   u'sofa',
   u'production',
   u'standing',
   u'ovation'],
  [u'bunch', u'performance', u'song'],
  [u'<br',
   u'play',
   u'subject',
   u'bit',
   u'praise',
   u'songs.<br',
   u'interplay',
   u'song']],
 [[u'demon', u'role'],
  [u'award',
   u'box',
   u'office',
   u'expectation',
   u'production',
   u'run',
   u'performance'],
  [u'result', u'capture', u'play', u'approximation', u'staging.<br', u'flaw'],
  [u'stage',
   u'play',
   u'film',
   u'performance',
   u'stage',
   u'theatre',
   u'film',
   u'performance'],
  [u'film',
   u'stand',
   u'quality',
   u'performance',
   u'sake',
   u'camera',
   u'case',
   u'larger-than-life',
   u'performance',
   u'film',
   u'voice',
   u'place',
   u'voice',
   u'cast.<br',
   u'stage-play-on-film',
   u'effect',
   u'consideration',
   u'performance',
   u'operetta',
   u'style'],
  [u'mixture',
   u'silliness',
   u'stupidity',
   u'malice',
   u'role',
   u'barber',
   u'client',
   u'grave'],
  [u'cast', u'film', u'set', u'display'],
  [u'work'],
  [u'story'],
  [u'myth',
   u'story',
   u'string',
   u'year',
   u'stage',
   u'sweeney',
   u'todd',
   u'demon',
   u'era',
   u'copyright',
   u'law',
   u'variation',
   u'play'],
  [u'barber', u'man', u'associate', u'py', u'public'],
  [u'version',
   u'version',
   u'story',
   u'lot',
   u'blood',
   u'body',
   u'chute',
   u'humor',
   u'time',
   u'music',
   u'lyric',
   u'subplot',
   u'clutch',
   u'open',
   u'charm'],
  [u'lyric',
   u'deal',
   u'satire',
   u'industry',
   u'capitalism',
   u'way',
   u'fault',
   u'complex',
   u'music.<br',
   u'concert',
   u'version',
   u'film',
   u'selection',
   u'film',
   u'version',
   u'tale',
   u'thread',
   u'play'],
  [u'opinion', u'film', u'comedy', u'favor', u'blood'],
  [u'case', u'fan', u'story', u'tour']],
 [[u'production', u'example', u'stage'],
  [u'transfer'],
  [u'course', u'music', u'lyric'],
  [u'set',
   u'plot',
   u'swift',
   u'scene',
   u'change',
   u'camera',
   u'action',
   u'fact',
   u'stage',
   u'production'],
  [u'platform', u'pie', u'shop', u'barber', u'shop', u'upstairs'],
  [u'gantry', u'stair', u'rest', u'action', u'place'],
  [u'tale',
   u'injustice',
   u'revenge',
   u'murder',
   u'mayhem',
   u'humour',
   u'moment'],
  [u'work', u'theatre', u'performance']],
 [[u'world', u'fan', u'album', u'time', u'movie', u'version'],
  [u'chance', u'movie'],
  [u'version', u'movie', u'play', u'member', u'cast', u'performance'],
  [u'job',
   u'voice',
   u'bit',
   u'broader.<br',
   u'problem',
   u'character',
   u'extent',
   u'lover'],
  [u'voice', u'note', u'point', u'play'],
  [u'story', u'weight', u'music', u'thing', u'creator'],
  [u'lark', u'bit', u'comedy', u'vein'],
  [u'piece', u'work', u'company'],
  [u'music',
   u'point',
   u'world',
   u'outside',
   u'show.<br',
   u'lot',
   u'film',
   u'website',
   u'film',
   u'play',
   u'film'],
  [u'person', u'performance', u'status', u'performance'],
  [u'version'],
  [u'film', u'child', u'age', u'musical', u'blood', u'cannibalism'],
  [u'performance', u'effort', u'year', u'theater', u'era', u'affair'],
  [u'era', u'mile', u'mile', u'madness']],
 [[u'tale'],
  [u'score', u'performance'],
  [u'title',
   u'role',
   u'voice',
   u'pun',
   u'impersonation',
   u'demon',
   u'barber',
   u'relief',
   u'victim',
   u'meat',
   u'py'],
  [u'treat']],
 [[u'version'],
  [u'stage', u'twice.<br', u'ticket', u'today'],
  [u'piece', u'theater', u'scream']],
 [[u'state', u'treatment', u'story', u'genius'],
  [u'music', u'lyric', u'right', u'subject', u'matter'],
  [u'explanation', u'comedy'],
  [u'py', u'business', u'acclaim', u'ingredient'],
  [u'song', u'idea'],
  [u'number',
   u'line',
   u'maker',
   u'indication',
   u'premise',
   u'drama',
   u'comedy']],
 [[u'hand', u'portrayal'],
  [u'role', u'counterpart', u'tenderness', u'courtship', u'boy'],
  [u'memory',
   u'performance',
   u'debut',
   u'performance',
   u'picture',
   u'gaslight',
   u'murder'],
  [u'year'],
  [u'opera', u'superstar'],
  [u'quality', u'score'],
  [u'conclusion', u'actor', u'line', u'opera', u'performer', u'skill'],
  [u'note'],
  [u'loyalty', u'confusion'],
  [u'word']],
 [[u'impact', u'better.<br', u'music', u'line', u'melody', u'song'],
  [u'chord',
   u'structure',
   u'voicing',
   u'bit',
   u'melancholy',
   u'bit',
   u'contentment',
   u'bit',
   u'yearning',
   u'singer',
   u'point',
   u'view.<br',
   u'lyric'],
  [u'rhyme', u'scheme', u'end'],
  [u'caption', u'dialog', u'lyric'],
  [u'award', u'poetry', u'performance'],
  [u'singing', u'range', u'acting'],
  [u'song'],
  [u'timing',
   u'pitch',
   u'beat',
   u'score',
   u'achievement',
   u'musicianship',
   u'delivery.<br',
   u'tale',
   u'time',
   u'tune',
   u'head']],
 [[u'genius',
   u'sweeney',
   u'todd',
   u'concoction',
   u'barber',
   u'return',
   u'revenge',
   u'evil',
   u'daughter',
   u'evil',
   u'world'],
  [u'barber', u'assistance', u'pie', u'shop', u'owner', u'agenda'],
  [u'production',
   u'entirety',
   u'role',
   u'pie',
   u'shop',
   u'owner',
   u'use',
   u'head',
   u'mincemeat'],
  [u'title', u'role', u'role'],
  [u'start',
   u'commit',
   u'character',
   u'rate',
   u'sondaheim',
   u'score',
   u'thing',
   u'opera'],
  [u'woman', u'duet', u'man', u'revenge'],
  [u'sailer', u'rescue', u'daughter'],
  [u'point', u'voice', u'off-pitch', u'couple', u'moment'],
  [u'rest',
   u'cast',
   u'rate',
   u'production',
   u'production',
   u'tenor',
   u'auditorium'],
  [u'score', u'performance', u'night', u'theater', u'experience', u'curtain'],
  [u'taste',
   u'game',
   u'heart',
   u'joy',
   u'music',
   u'theater',
   u'lover',
   u'fan']],
 [[u'book'],
  [u'plainclothe',
   u'detective',
   u'crew',
   u'villain',
   u'type',
   u'character',
   u'boy'],
  [u'villain'],
  [u'villain',
   u'cartoon',
   u'comic',
   u'use',
   u'gunplay',
   u'technology',
   u'advance',
   u'wristwatch',
   u'communicator',
   u'share',
   u'screen',
   u'time',
   u'movie'],
  [u'music', u'song', u'point', u'career'],
  [u'film',
   u'moment',
   u'film',
   u'sound',
   u'pieces.<br',
   u'tough-talking',
   u'kid',
   u'boy',
   u'chin'],
  [u'cinematography'],
  [u'film', u'feature', u'ton', u'actor', u'actor', u'film'],
  [u'film'],
  [u'life', u'part.<br', u'film', u'cinema', u'reason'],
  [u'character', u'style', u'set', u'wardrobe', u'film']],
 [[u'year', u'love', u'version', u'version', u'library'],
  [u'film', u'lot', u'theater', u'production', u'story'],
  [u'version', u'hand', u'them.<br', u'role', u'job'],
  [u'singing']],
 [[u'video', u'concert', u'version'],
  [u'book', u'composer'],
  [u'scope', u'ingenuity', u'composition'],
  [u'performance'],
  [u'performance', u'woman', u'role'],
  [u'performance', u'stage', u'minimalist', u'set', u'production'],
  [u'scaffolding', u'stage', u'street']],
 [[u'opinion', u'musical'],
  [u'score'],
  [u'lead', u'character', u'role'],
  [u'theme', u'revenge'],
  [u'deal', u'humor', u'scale.<br', u'story', u'man', u'period'],
  [u'place', u'foot', u'face'],
  [u'effort', u'device', u'plan', u'revenge'],
  [u'help',
   u'meat',
   u'pie',
   u'shop',
   u'barbershop',
   u'below".<br',
   u'version',
   u'time'],
  [u'revival',
   u'concert',
   u'versions.<br',
   u'aspect',
   u'production',
   u'production',
   u'version'],
  [u'role', u'time', u'work'],
  [u'lover', u'chemistry']],
 [[u'story', u'memory', u'work', u'writer', u'writer'],
  [u'effect', u'poverty', u'breakdown', u'society'],
  [u'aspect', u'songwriter', u'style'],
  [u'success', u'failure', u'thing'],
  [u'barber', u'slit', u'person', u'throat', u'meat', u'py'],
  [u'factory', u'effect', u'misery', u'society', u'need'],
  [u'stagehand', u'set', u'change'],
  [u'baritone', u'voice', u'vehicle'],
  [u'rest', u'clich\xe9s', u'love', u'story', u'bit'],
  [u'album', u'accent'],
  [u'score', u'seriousness', u'story'],
  [u'style',
   u'showtune',
   u'art',
   u'music',
   u'bar',
   u'style',
   u'song',
   u'history',
   u'music'],
  [u'wonder',
   u'score',
   u'song',
   u'duet',
   u'soliloquy',
   u'society',
   u'style',
   u'patter'],
  [u'comedy'],
  [u'warning', u'evil', u'revenge'],
  [u'villain', u'movie', u'point', u'villain'],
  [u'chilling',
   u'reprise',
   u'grave',
   u'end',
   u'world',
   u'vengeance',
   u'vengeance']],
 [[u'cast', u'principal', u'touring', u'company', u'production', u'tv'],
  [u'night', u'release', u'production', u'videotape', u'year'],
  [u'production',
   u'performance',
   u'tape',
   u'age',
   u'audio',
   u'video',
   u'quality',
   u'standard'],
  [u'greatness', u'work', u'performance'],
  [u'today', u'recollection', u'theater', u'performance', u'rendition']],
 [[u'performance'], [u'arm'], [u'boy'], [u'film']],
 [[u'fun', u'respect.<br', u'theatre'], [u'kid', u'kick', u'theatre']],
 [[u'technology', u'play', u'version', u'work'],
  [u'work', u'movie', u'picture', u'candidate', u'cd', u'gypsy'],
  [u'rest', u'cast'],
  [u'version', u'opera']],
 [[u'play', u'turn', u'legend', u'job', u'theatre', u'stage'],
  [u'score', u'score'],
  [u'actress', u'greenfinch'],
  [u'role'],
  [u'replacement', u'title', u'role', u'performance'],
  [u'mark']],
 [[u'start', u'brilliance'],
  [u'fan', u'musical'],
  [u'performance', u'award', u'emmy'],
  [u'mind', u'film', u'oscar'],
  [u'video']],
 [[u'movie', u'movie', u'book', u'feel'],
  [u'set', u'costume', u'color', u'book'],
  [u'movie', u'mob', u'suit', u'hat', u'attitudes.<br', u'relief', u'mumble'],
  [u'movie',
   u'mob',
   u'clich\xe9s',
   u'person',
   u'people',
   u'car',
   u'guy',
   u'girlfriend',
   u'house.<br',
   u'movie',
   u'sense',
   u'word',
   u'camera',
   u'angel',
   u'book'],
  [u'movie', u'movie', u'mistake']],
 [[u'toddler'],
  [u'sure'],
  [u'year'],
  [u'score', u'score'],
  [u'note', u'singing', u'it!<br', u'production'],
  [u'voice', u'voice'],
  [u'epiphany', u'audience', u'reaction'],
  [u'role'],
  [u'bird'],
  [u'theater', u'lover', u'year', u'appreciation', u'music']],
 [[u'set', u'music', u'spin', u'aknife', u'razor', u'great'],
  [u'theatre', u'screen'],
  [u'songwriter',
   u'age',
   u'ballad',
   u'finale',
   u'victim',
   u'meat',
   u'py',
   u'play'],
  [u'play',
   u'ingenue',
   u'lyndeck',
   u'bravado',
   u'performance',
   u'lust',
   u'subject',
   u'vendetta'],
  [u'actor'],
  [u'highlight', u'johanna', u'py', u'title', u'production']],
 [[u'world', u'thing', u'league', u'baseball'],
  [u'actor', u'role'],
  [u'storyline', u'life', u'subplot'],
  [u'person', u'person', u'way', u'tradition'],
  [u'element', u'obstacle', u'film']],
 [[u'league', u'star'],
  [u'look', u'custom', u'behavior'],
  [u'chemistry', u'movie', u'baseball'],
  [u'player', u'shill'],
  [u'time', u'movie', u'baseball']],
 [[u'woman',
   u'baseball',
   u'year',
   u'town',
   u'existence',
   u'baseball',
   u'entity',
   u'underwriting',
   u'support'],
  [u'movie.<br'],
  [u'baseball',
   u'fact',
   u'life',
   u'japan-ball',
   u'deference',
   u'umpire',
   u'pressure',
   u'owner',
   u'manager',
   u'conservatism',
   u'play',
   u'dog',
   u'player',
   u'touch',
   u'isolation',
   u'gai-jin',
   u'jock',
   u'person',
   u'culture'],
  [u'foreigner',
   u'way',
   u'gai-jin',
   u'strike',
   u'zone',
   u'player',
   u'script',
   u'award',
   u'redemption',
   u'play',
   u'theme'],
  [u'angle', u'sport']],
 [[u'sense'],
  [u'movie', u'reviewer', u'film'],
  [u'course', u'actor'],
  [u'today',
   u'yakuza',
   u'leadership',
   u'thank',
   u'cocreator',
   u'human',
   u'person',
   u'adversity',
   u'address'],
  [u'food', u'price', u'thing', u'bread']],
 [[u'reviews', u'film', u'person', u'film'],
  [u'thing', u'job', u'member'],
  [u'misunderstanding', u'reviews', u'fashion'],
  [u'hero', u'novel'],
  [u'engineer',
   u'person',
   u'person',
   u'technology',
   u'cooperation',
   u'host',
   u'value',
   u'virtue'],
  [u'ugliness',
   u'personality',
   u'humanity',
   u'genuine.<br',
   u'baseball',
   u'boorishness',
   u'culture',
   u'coin',
   u'humanity',
   u'decency']],
 [[u'league',
   u'baseball',
   u'player',
   u'career',
   u'culture',
   u'manager',
   u'woman',
   u'insecurity'],
  [u'charm', u'performance'],
  [u'purpose'],
  [u'self', u'doubt', u'difficulty', u'thing', u'film', u'thought-provoking'],
  [u'cast',
   u'championship',
   u'team',
   u'cast',
   u'film',
   u'win',
   u'award',
   u'effort',
   u'viewer',
   u'result']],
 [[u'movie', u'collection', u'baseball', u'movie', u'sport']],
 [[u'movie', u'tv', u'accuracy', u'honesty', u'portrayal', u'ideology'],
  [u'screenplay', u'film', u'knowledge', u'foreigner'],
  [u'affection'],
  [u'movie', u'gaijin', u'experience']],
 [[u'love', u'film', u'adaptation', u'strip', u'genre'],
  [u'superhero',
   u'film',
   u'woodwork',
   u'year',
   u'genre',
   u'film',
   u'source',
   u'material',
   u'effect',
   u'shooting',
   u'strip',
   u'color',
   u'world',
   u'gangster',
   u'woman',
   u'style',
   u'tone.<br',
   u'film',
   u'aesthetic',
   u'character',
   u'ability',
   u'truth.<br',
   u'look',
   u'character',
   u'detective',
   u'title',
   u'bust',
   u'guy',
   u'costs.<br',
   u'treat',
   u'makeup',
   u'plot',
   u'boy',
   u'performance',
   u'control',
   u'action',
   u'city',
   u'gang',
   u'him.<br',
   u'relationship',
   u'father',
   u'figure',
   u'hero'],
  [u'fidelity', u'advance', u'boy', u'squeeze'],
  [u'time',
   u'thing',
   u'figure',
   u'town',
   u'middle.<br',
   u'performance',
   u'focus',
   u'relationship',
   u'lead',
   u'center',
   u'material',
   u'action',
   u'effect'],
  [u'pacino',
   u'chew',
   u'scenery',
   u'role',
   u'standout',
   u'rest.<br',
   u'book',
   u'movie',
   u'genre'],
  [u'detective.<br']],
 [[u'bit', u'time', u'storyline'],
  [u'casting', u'actors'],
  [u'job',
   u'baseball',
   u'player',
   u'figure',
   u'stretch',
   u'coach',
   u'baseball',
   u'team'],
  [u'light', u'comedy']],
 [[u'mind'],
  [u'writer', u'film', u'dialogue'],
  [u'line', u'character'],
  [u'problem', u'character', u'ballplayer'],
  [u'animosity', u'tone', u'interaction', u'team'],
  [u'eye', u'eye', u'coach', u'goal', u'season', u'greatness', u'environment'],
  [u'baseball', u'fan', u'anybody', u'baseball', u'movie']],
 [[u'movie'],
  [u'job', u'movie'],
  [u'film'],
  [u'baseball',
   u'sequence',
   u'baseball',
   u'movie',
   u'actor',
   u'baseball',
   u'player'],
  [u'scene', u'lack', u'hat', u'game', u'scene', u'bath'],
  [u'job', u'recognition', u'baseball', u'movies(he']],
 [[u'movie'],
  [u'copy', u'couple', u'month', u'release', u'video', u'collection'],
  [u'baseball',
   u'fan',
   u'off-season',
   u'copy',
   u'book',
   u'profile',
   u'baseball',
   u'challenge',
   u'player'],
  [u'yesterday', u'movie', u'screenplay', u'book'],
  [u'parallel'],
  [u'character', u'slugger', u'day'],
  [u'teammate',
   u'character',
   u'veteran',
   u'league',
   u'peace',
   u'frustration',
   u'game',
   u'teammate'],
  [u'character',
   u'sequence',
   u'encounter',
   u'fanfare',
   u'signing',
   u'success',
   u'fuel',
   u'sport',
   u'medium',
   u'slump',
   u'spur',
   u'frustration',
   u'alienation',
   u'teammate',
   u'fan',
   u'medium',
   u'disillusionment',
   u'desire',
   u'home'],
  [u'difference', u'movie', u'touch', u'love'],
  [u'<br', u'love', u'viewer', u'site', u'actress', u'work'],
  [u'article',
   u'love',
   u'scene',
   u'foreigner',
   u'movie',
   u'standard',
   u'kiss',
   u'bath',
   u'towel',
   u'outrage',
   u'public',
   u'male',
   u'role',
   u'kind',
   u'television',
   u'movie',
   u'industry'],
  [u'shame', u'actress', u'movie'],
  [u'<br', u'movie', u'baseball', u'element', u'difference', u'copy'],
  [u'read', u'companion', u'book', u'movie']],
 [[u'person',
   u'baseball',
   u'player',
   u'movie',
   u'baseball.<br',
   u'think',
   u'movie',
   u'comedy',
   u'relationship'],
  [u'movie', u'comedy.<br', u'movie', u'culture'],
  [u'baseball', u'manager'],
  [u'barrier', u'success'],
  [u'ballplayer',
   u'japanese',
   u'team',
   u'mentality',
   u'manager',
   u'achievement',
   u'middle.<br',
   u'romance',
   u'critique',
   u'culture'],
  [u'understanding',
   u'mindset',
   u'miss',
   u'movie',
   u'baseball',
   u'romance',
   u'culture',
   u'clash',
   u'comedy',
   u'relief'],
  [u'experience',
   u'understanding',
   u'culture',
   u'movie',
   u'culture',
   u'portrayal.<br',
   u'movie']],
 [[u'era', u'culture', u'time', u'capsule'],
  [u'vacation',
   u'end',
   u'film',
   u'fan',
   u'injection',
   u'tradition',
   u'culture',
   u'baseball',
   u'culture',
   u'game.<br',
   u'slumping',
   u'slugger',
   u'runners-up',
   u'answer'],
  [u'manager',
   u'piece',
   u'puzzle',
   u'baseball',
   u'field',
   u'more.<br',
   u'casting',
   u'selleck',
   u'script',
   u'character',
   u'suit',
   u'film',
   u'television',
   u'cast',
   u'owner'],
  [u'actor', u'love', u'manager', u'daughter', u'believer', u'tradition'],
  [u'girlfriend'],
  [u'father',
   u'bit',
   u'man',
   u'baseball',
   u'scene',
   u'ex-patriate',
   u'mentor'],
  [u'fish-out-of-water',
   u'element',
   u'right',
   u'country',
   u'language',
   u'practice',
   u'way',
   u'copy',
   u'pastime'],
  [u'scene', u'magazine', u'manager', u'tradition', u'boss'],
  [u'plot',
   u'subplot',
   u'end',
   u'comedy',
   u'comedy-drama',
   u'drama',
   u'humor'],
  [u'plot', u'way', u'critic', u'actor', u'league', u'film'],
  [u'situation', u'place', u'backdrop', u'result', u'film'],
  [u'baseball',
   u'cinematography',
   u'rival',
   u'love',
   u'realism.<br',
   u'film',
   u'baseball',
   u'workplace',
   u'person',
   u'work',
   u'origin',
   u'agenda',
   u'difference',
   u'company',
   u'team.<br',
   u'film',
   u'way',
   u'theater']],
 [[u'movie',
   u'story',
   u'baseball',
   u'semi-over',
   u'view',
   u'issue',
   u'player',
   u'end',
   u'time',
   u'sport'],
  [u'difference',
   u'baseball',
   u'fact',
   u'game',
   u'differently.<br',
   u'movie',
   u'tv',
   u'winter',
   u'night',
   u'watch',
   u'summer',
   u'spring',
   u'training',
   u'month'],
  [u'movie', u'baseball', u'fan', u'date', u'movie']],
 [[u'guy', u'friend'],
  [u'movie'],
  [u'end', u'day', u'movie', u'time', u'plane', u'month'],
  [u'thing', u'ball', u'game', u'scene'],
  [u'sequel'],
  [u'argumrnt', u'ex-wife']],
 [[u'year'],
  [u'paint',
   u'picture',
   u'mentality',
   u'sport',
   u'relationship',
   u'perspective'],
  [u'movie', u'judge']],
 [[u'movie', u'lot', u'difference', u'practice', u'year'],
  [u'job', u'movie'],
  [u'fan', u'charm', u'charisma', u'film', u'life', u'way', u'actor'],
  [u'<br',
   u'film',
   u'actor',
   u'fun',
   u'movie',
   u'place',
   u'party',
   u'sight-see']],
 [[u'word', u'screen', u'version'],
  [u'movie'],
  [u'yellow-clad',
   u'title',
   u'character',
   u'detective',
   u'action',
   u'weaknesses.<br',
   u'rest',
   u'character',
   u'world'],
  [u'hubby', u'crime', u'fighter', u'person', u'boy', u'villain'],
  [u'character'],
  [u'plot', u'way', u'boy'],
  [u'event',
   u'town',
   u'answer',
   u'thinks.<br',
   u'course',
   u'thing',
   u'movie',
   u'fun'],
  [u'trouble', u'age', u'use'],
  [u'movie']],
 [[u'light', u'sport', u'comedy', u'core'],
  [u'plot',
   u'level',
   u'paradox',
   u'baseball',
   u'fine',
   u'game',
   u'value',
   u'value',
   u'game'],
  [u'sport', u'comedy', u'result', u'uncomprehending', u'disbelief'],
  [u'character', u'baseball', u'star', u'ball'],
  [u'character',
   u'change',
   u'life',
   u'curveball',
   u'life',
   u'midst',
   u'country',
   u'manager',
   u'team',
   u'girlfriend',
   u'try'],
  [u'sound', u'stuff'],
  [u'clash', u'culture', u'comedy', u'place', u'sport', u'level'],
  [u'story',
   u'man',
   u'immaturity',
   u'way',
   u'life',
   u'pain',
   u'success',
   u'place'],
  [u'story',
   u'respect',
   u'performance',
   u'tush',
   u'person',
   u'tantrum',
   u'public',
   u'character',
   u'dismay'],
  [u'fan'],
  [u'baseball', u'loss', u'innocence', u'tale']],
 [[u'lot', u'comment', u'film', u'baseball', u'movie'],
  [u'friend', u'event', u'movie', u'suspension', u'disbelief'],
  [u'reply', u'event', u'truth', u'life', u'movie']],
 [[u'excitement', u'drama', u'fun', u'comedy', u'film'],
  [u'performance', u'here.<br', u'film', u'time', u'sub', u'movie', u'<br']],
 [[u'wife',
   u'movie',
   u'pick-me-up',
   u'laugh',
   u'conflict',
   u'character',
   u'repore',
   u'comedy',
   u'relief']],
 [[u'movie'],
  [u'barb', u'villain'],
  [u'cast', u'blast', u'expense', u'audience'],
  [u'fun', u'comedy', u'meaning', u'love']],
 [[u'movie', u'comedy'], [u'release']],
 [[u'movie'],
  [u'water',
   u'lot',
   u'humor',
   u'lot',
   u'scenery',
   u'movie',
   u'place',
   u'fleet',
   u'character',
   u'pier',
   u'end',
   u'movie',
   u'boat'],
  [u'couple', u'lobster', u'priceless.<br', u'person']],
 [[u'count', u'time', u'movie', u'time'],
  [u'expression', u'slapstick', u'humor', u'timing', u'joke'],
  [u'character', u'sonar'],
  [u'job']],
 [[u'movie', u'cable', u'tv'],
  [u'movie', u'look', u'time'],
  [u'film', u'fate', u'love', u'scene'],
  [u'character', u'movie', u'kind', u'guy', u'zaniness'],
  [u'troop']],
 [[u'ex', u'submarine', u'officer', u'submarine', u'movie'],
  [u'comedy', u'joke', u'force'],
  [u'cast', u'submarine', u'guy', u'hero', u'diesel', u'boat'],
  [u'dbf', u'way', u'boat']],
 [[u'time', u'writing', u'vote', u'rating'],
  [u'picture'],
  [u'person', u'movie'],
  [u'movie', u'book', u'hero'],
  [u'win', u'nomination'],
  [u'acting', u'actor', u'effect', u'opinion', u'year'],
  [u'entertainment'],
  [u'boy']],
 [[u'movie', u'time', u'time'],
  [u'movie',
   u'man',
   u'odd',
   u'over-self-confident',
   u'system.<br',
   u'movie',
   u'person',
   u'movie.<br',
   u'action',
   u'comedy',
   u'film',
   u'soon.<br']],
 [[u'laugh',
   u'trust',
   u'movie',
   u'guy.<br',
   u'synopsis',
   u'rest',
   u'movie.<br',
   u'thing',
   u'end',
   u'credit']],
 [[u'misfit',
   u'pull',
   u'mission.<br',
   u'ensues.<br',
   u'film',
   u'humor',
   u'character',
   u'boat'],
  [u'film', u'tv'],
  [u'role',
   u'cosmos',
   u'thing',
   u'service',
   u'mankind',
   u'fun',
   u'entertainment',
   u'minute'],
  [u'uniform']],
 [[u'guy', u'rendition'],
  [u'officer'],
  [u'crew', u'laundry'],
  [u'engineer', u'class'],
  [u'job'],
  [u'scene', u'golf', u'course', u'way', u'port'],
  [u'xo', u'weasel', u'time']],
 [[u'minute', u'movie', u'board', u'sub', u'character', u'gel'],
  [u'share', u'sailor'],
  [u'movie', u'sex', u'violence', u'time'],
  [u'dialog', u'heart'],
  [u'crew']],
 [[u'comedy', u'epic'],
  [u'comedy', u'day', u'movie'],
  [u'right',
   u'home',
   u'role',
   u'captain',
   u'diesel',
   u'sub',
   u'war',
   u'game',
   u'terrorist',
   u'bomb',
   u'defense'],
  [u'plot', u'pre', u'topic', u'start', u'command', u'laugh'],
  [u'plain',
   u'minute',
   u'laugh',
   u'prude',
   u'language',
   u'innuendo',
   u'enjoy']],
 [[u'entertainment', u'wisdom', u'movie', u'capital'],
  [u'sexism', u'violence', u'comedy', u'bunch', u'misfit', u'submarine'],
  [u'task', u'star'],
  [u'submarine'],
  [u'underdog', u'movie']],
 [[u'slow', u'chance'],
  [u'spirit', u'arm', u'movie', u'group', u'method'],
  [u'way', u'result', u'mutiny', u'attempt', u'pirate', u'crew', u'plank'],
  [u'fisherman', u'harbor', u'whale', u'decoy', u'antic', u'surprise']],
 [[u'movie',
   u'theater',
   u'release',
   u'tape',
   u'year',
   u'dvd',
   u'sum',
   u'comedy',
   u'tattoo',
   u'thing',
   u'commander',
   u'diesel',
   u'sub',
   u'crew',
   u'screwball',
   u'misfit'],
  [u'attack',
   u'sub',
   u'captain',
   u'guy',
   u'admiral',
   u'exercise',
   u'laugh',
   u'segment',
   u'cook',
   u'kind',
   u'humor',
   u'me.<br',
   u'end',
   u'machinist',
   u'explanation',
   u'inside',
   u'knowledge',
   u'submariner',
   u'consultant',
   u'thank',
   u'advent',
   u'sub',
   u'salt',
   u'dbf',
   u'pin',
   u'boat'],
  [u'<br', u'friend', u'aspect', u'movie', u'exercise']],
 [[u'mix', u'story', u'character', u'moment', u'joke', u'fun', u'performance'],
  [u'guy', u'submarine', u'scene', u'set'],
  [u'set', u'decoration', u'tour', u'scene', u'movie'],
  [u'job', u'film.<br', u'light', u'entertaining', u'movie']],
 [[u'fun'],
  [u'joke', u'figure', u'eye', u'heart'],
  [u'film', u'actor'],
  [u'setting', u'\x84batman', u'movie'],
  [u'story', u'plot', u'ending.<br', u'movie', u'game', u'friend'],
  [u'credit', u'beginning', u'actor', u'make-up']],
 [[u'post', u'movie', u'script'],
  [u'milk', u'beverage', u'choice', u'nose'],
  [u'mix', u'actor', u'sync'],
  [u'actor', u'reference', u'movie', u'role'],
  [u'shot',
   u'game',
   u'basketball',
   u'team',
   u'basketball',
   u'fan',
   u'jump',
   u'stint'],
  [u'character', u'attribute'],
  [u'anal-retentive', u'character', u'offset', u'demeanor'],
  [u'movie', u'laugh', u'time', u'bit', u'movie']],
 [[u'flick', u'pro'],
  [u'comedy',
   u'vehicle',
   u'character',
   u'sequel',
   u'movie',
   u'border',
   u'cult',
   u'obsession'],
  [u'group',
   u'grandson',
   u'role',
   u'movie',
   u'board.<br',
   u'fun',
   u'romp',
   u'company.<br',
   u'movie',
   u'entertainment']],
 [[u'scripting', u'comedy', u'movie', u'year'],
  [u'character', u'bit'],
  [u'timing', u'script', u'underdog', u'plot'],
  [u'age', u'set', u'reference', u'galley', u'scene'],
  [u'movie']],
 [[u'plot', u'world', u'comedy', u'movie', u'rule'],
  [u'movie'],
  [u'guy', u'segment'],
  [u'actor', u'movie', u'character', u'movie'],
  [u'actor', u'shot', u'character', u'movie', u'year', u'sub'],
  [u'chance', u'brand', u'sub'],
  [u'crew', u'misfit'],
  [u'series'],
  [u'thing', u'officer', u'officer', u'woman'],
  [u'commander',
   u'position',
   u'movie',
   u'fair',
   u'fact',
   u'movie',
   u'theater'],
  [u'silence',
   u'fart',
   u'reaction',
   u'smell',
   u'movie',
   u'fun',
   u'movie',
   u'hate',
   u'movie']],
 [[u'comedy', u'heart', u'well.<br'],
  [u'piece', u'art'],
  [u'enterprise', u'ship', u'diesel', u'too.<br', u'scene', u'stingray'],
  [u'matter', u'sir'],
  [u'problem.<br', u'story'],
  [u'sub', u'task', u'diesel', u'sub', u'attack'],
  [u'eye', u'star', u'grudge', u'crew', u'screw'],
  [u'crew', u'working', u'team', u'date', u'sub']],
 [[u'intelligence', u'fleet'],
  [u'friend', u'yard', u'sale', u'diesel', u'fleet'],
  [u'country', u'hand', u'baby', u'warhead'],
  [u'year',
   u'command',
   u'diesel',
   u'sub',
   u'exercise',
   u'surface',
   u'fleet',
   u'line',
   u'attack',
   u'sub'],
  [u'command',
   u'time',
   u'whip',
   u'news',
   u'bear',
   u'err',
   u'group',
   u'submariner',
   u'warrior'],
  [u'penis', u'commander', u'favorite', u'delegate', u'authority', u'manner'],
  [u'piece', u'recruitment', u'propaganda', u'gem', u'creator']],
 [[u'adventure',
   u'lead',
   u'role',
   u'feature',
   u'sub',
   u'commander',
   u'sub',
   u'series',
   u'war-game',
   u'crew',
   u'man',
   u'woman',
   u'too).<br',
   u'writer',
   u'comedy',
   u'film'],
  [u'character', u'crew', u'plenty', u'movie', u'humor', u'sword'],
  [u'member',
   u'scene',
   u'gesture',
   u'impersonation',
   u'personalities.<br',
   u'version'],
  [u'film', u'job', u'way']],
 [[u'movie', u'family'],
  [u'eye', u'mention', u'movie', u'movie'],
  [u'movie'],
  [u'bit', u'sheep', u'navy'],
  [u'kind', u'guy', u'golf', u'sub', u'ball', u'golf', u'course'],
  [u'kind', u'guy', u'wake', u'hangover', u'tattoo', u'dongle'],
  [u'application',
   u'command',
   u'sub',
   u'time',
   u'sub',
   u'time',
   u'desk',
   u'job',
   u'life'],
  [u'admiralty', u'boat', u'sub'],
  [u'diesel', u'sub', u'relic'],
  [u'mission',
   u'war',
   u'game.<br',
   u'bit',
   u'boat',
   u'point',
   u'talk',
   u'torn'],
  [u'sub', u'world', u'country'],
  [u'renegade', u'captain', u'diesel', u'sub', u'warhead', u'basis'],
  [u'admiralty', u'war', u'game'],
  [u'mission', u'sea', u'navy', u'basis'],
  [u'battle', u'course.<br', u'plot'],
  [u'movie', u'gag'],
  [u'laugh', u'night', u'look']],
 [[u'documentary', u'movie', u'list', u'actor', u'director', u'movie'],
  [u'theme',
   u'script',
   u'cast',
   u'director',
   u'lot',
   u'money',
   u'movie.<br',
   u'proof',
   u'corollary',
   u'theory'],
  [u'screenplay'],
  [u'actor', u'unknown', u'movie'],
  [u'movie', u'case'],
  [u'character',
   u'actor',
   u'enjoyability',
   u'film.<br',
   u'dynamic',
   u'movie',
   u'magic',
   u'film',
   u'transition',
   u'line',
   u'line',
   u'dialog.<br',
   u'premise',
   u'lot',
   u'lot',
   u'inaccuracy',
   u'thing',
   u'world',
   u'navy'],
  [u'merchant',
   u'marine',
   u'feel',
   u'movie',
   u'mark',
   u'life',
   u'sea',
   u'goes.<br',
   u'movie',
   u'family',
   u'film',
   u'fan',
   u'lot',
   u'wit',
   u'sarcasm']],
 [[u'video',
   u'tape',
   u'year',
   u'watch',
   u'year.<br',
   u'wit',
   u'movie',
   u'success'],
  [u'formula'],
  [u'ratings.<br', u'comedy'],
  [u'fun', u'flick']],
 [[u'actor', u'movie', u'way'],
  [u'detective', u'mob', u'boss', u'city'],
  [u'time', u'boy', u'man', u'city', u'singer', u'girlfriend', u'eye'],
  [u'face'],
  [u'villian', u'book', u'collection.<br', u'movie'],
  [u'movie', u'age', u'fun', u'movie', u'family']],
 [[u'role', u'sexpot', u'brain'],
  [u'line', u'catch', u'phrase'],
  [u'movie', u'plot', u'script', u'surprise', u'time'],
  [u'phrase',
   u'term',
   u'head',
   u'obstacle',
   u'sheer',
   u'accuracy',
   u'realism',
   u'movie',
   u'character']],
 [[u'movie', u'cast', u'character', u'script', u'synergy'],
  [u'character', u'truth', u'person', u'team', u'goal', u'morality'],
  [u'situation', u'movie', u'opening', u'premise'],
  [u'tension', u'humor'],
  [u'movie', u'movie', u'term', u'entertaining'],
  [u'music',
   u'copy',
   u'music',
   u'post',
   u'war',
   u'navy',
   u'movie',
   u'humor',
   u'point',
   u'greatness',
   u'eye',
   u'beholder'],
  [u'scene', u'credit', u'music', u'video', u'screen', u'feature'],
  [u'scene', u'cut', u'casting', u'acting', u'movie', u'pretension'],
  [u'guy', u'gal.<br', u'day', u'thought', u'film'],
  [u'fortune'],
  [u'wife', u'night', u'screen'],
  [u'movie', u'level', u'budget', u'film', u'winner'],
  [u'home',
   u'video',
   u'movie',
   u'vault',
   u'shame',
   u'shot',
   u'color',
   u'year',
   u'release'],
  [u'copy'],
  [u'eye',
   u'candy',
   u'film',
   u'credit',
   u'sequence',
   u'screen',
   u'music',
   u'video',
   u'feature']],
 [[u'woman',
   u'enchanted',
   u'castle',
   u'coast',
   u'novel',
   u'film',
   u'virtue',
   u'script',
   u'ensemble'],
  [u'element',
   u'movie',
   u'feeling',
   u'appreciation',
   u'story',
   u'resolution.<br',
   u'actress'],
  [u'wife', u'longing', u'wisteria', u'tranquillity'],
  [u'housewife', u'responsibility', u'hostess', u'castle'],
  [u'noblewoman', u'throng', u'male', u'admirer'],
  [u'scene', u'lady', u'memory', u'past.<br', u'man', u'story'],
  [u'husband', u'role', u'researcher', u'personality', u'writer'],
  [u'spouse',
   u'man',
   u'attempt',
   u'bath',
   u'bathtub',
   u'assistance',
   u'castle',
   u'servant'],
  [u'decade',
   u'actor',
   u'lady',
   u'landlord.<br',
   u'maven',
   u'proprietress',
   u'housewife']],
 [[u'kind', u'movie', u'poster', u'trailer'],
  [u'kind',
   u'movie',
   u'waitress',
   u'cross',
   u'country',
   u'adventure',
   u'crook',
   u'fact',
   u'film',
   u'tale',
   u'person',
   u'dream'],
  [u'unpredictability'],
  [u'violence', u'dream', u'reality', u'drama', u'comedy']],
 [[u'summer', u'retread', u'disappointment', u'breath', u'air'],
  [u'picture', u'man', u'woman', u'sex', u'film', u'brillant', u'company'],
  [u'performance',
   u'career',
   u'waitress',
   u'death',
   u'husband',
   u'mainstay',
   u'fantasy',
   u'world'],
  [u'trick', u'film', u'character'],
  [u'love', u'image', u'soap', u'opera'],
  [u'film', u'life', u'humor', u'love', u'violence']],
 [[u'movie'],
  [u'moment'],
  [u'rest', u'cast', u'character'],
  [u'story', u'twist'],
  [u'formula', u'movie']],
 [[u'film', u'trip', u'town'],
  [u'soap', u'groupie'],
  [u'character', u'forgiveness', u'goof'],
  [u'fantasy', u'fact', u'speak', u'devil', u'role'],
  [u'wish', u'wish', u'chair'],
  [u'friendship'],
  [u'cold', u'winter', u'day']],
 [[u'writing', u'acting', u'plot-twister', u'film', u'year'],
  [u'casting', u'direction', u'film', u'performance', u'soul'],
  [u'time'],
  [u'tongue', u'cheek', u'performance'],
  [u'spoof', u'soap', u'opera', u'movie']],
 [[u'question',
   u'film',
   u'people?<br',
   u'answer',
   u'film',
   u'whiney',
   u'note',
   u'voice',
   u'voice'],
  [u'fact', u'reality', u'time', u'film', u'task.<br'],
  [u'sublimate',
   u'energy',
   u'surface',
   u'most.<br',
   u'allusion',
   u'time',
   u'film'],
  [u'point',
   u'song',
   u'sera',
   u'sera',
   u'soundtrack',
   u'thing',
   u'film',
   u'performance',
   u'cast.<br',
   u'predictable.<br',
   u'reason',
   u'film',
   u'master',
   u'voice']],
 [[u'goof', u'error<br', u'room', u'suicide', u'gun', u'silencer'],
  [u'second', u'bang', u'gun']],
 [[u'book',
   u'movie',
   u'villain',
   u'life',
   u'screen',
   u'smile',
   u'line',
   u'dialog'],
  [u'manner'],
  [u'homage',
   u'gangster',
   u'picture',
   u'time',
   u'meant',
   u'kid',
   u'archetype',
   u'color',
   u'criminal',
   u'tommy',
   u'gun',
   u'personality'],
  [u'film',
   u'continuation',
   u'sight',
   u'gag',
   u'seriously.<br',
   u'time',
   u'movie',
   u'depiction',
   u'reality',
   u'comic-book',
   u'outline',
   u'old-school'],
  [u'story',
   u'cop',
   u'crook',
   u'cop',
   u'detective',
   u'bust',
   u'boy',
   u'performance',
   u'date',
   u'sense',
   u'sense',
   u'style',
   u'luck'],
  [u'kid', u'spunk', u'kid'],
  [u'nightclub',
   u'dame',
   u'kind',
   u'performance',
   u'suit',
   u'role',
   u'fine',
   u'feeling'],
  [u'dealing',
   u'figure',
   u'voice.<br',
   u'impersonation',
   u'film',
   u'splash',
   u'effect',
   u'explosion',
   u'comedy',
   u'action',
   u'syrup',
   u'stack',
   u'pancake'],
  [u'world',
   u'shot',
   u'thrust',
   u'plot',
   u'line',
   u'editing',
   u'montage',
   u'camera',
   u'angle',
   u'panel',
   u'comic'],
  [u'sequence', u'story', u'music', u'punch', u'gun-shot', u'way'],
  [u'heap-load',
   u'dialog',
   u'script',
   u'favorite',
   u'enemy',
   u'enemy',
   u'enemy',
   u'reference',
   u'figure',
   u'quotes).<br',
   u'time',
   u'movie',
   u'theater',
   u'bit',
   u'fantasy',
   u'degree'],
  [u'cheer',
   u'kid',
   u'action',
   u'intent',
   u'cousin',
   u'comic-book',
   u'movie',
   u'pg-13',
   u'fare',
   u'adult',
   u'throw-back',
   u'panache',
   u'feeling'],
  [u'ham', u'word']],
 [[u'nurse',
   u'september',
   u'film',
   u'festival',
   u'film',
   u'sea',
   u'vlissingen'],
  [u'day', u'time', u'evening', u'movie', u'taste', u'festival'],
  [u'nurse', u'ren\xe9e', u'zellweger', u'girl', u'love', u'soap-opera-star'],
  [u'role', u'freeman', u'rock', u'\xe0nd', u'ren\xe9e', u'zellweger'],
  [u'mix', u'romance', u'violence', u'roadmovie'],
  [u'soap-opera-lover', u'nurse', u'movie', u'character'],
  [u'friend',
   u'cause',
   u'story',
   u'line',
   u'freeman',
   u'rock',
   u'scene',
   u'thriller-aspect',
   u'picture'],
  [u'end', u'nurse', u'charm']],
 [[u'combination', u'plot', u'character'],
  [u'way', u'job', u'work', u'villain'],
  [u'standout'],
  [u'head'],
  [u'sort',
   u'sparkle',
   u'performance',
   u'part.<br',
   u'road',
   u'movie',
   u'synopsis'],
  [u'road']],
 [[u'film'],
  [u'profanity', u'violence', u'innuendo', u'movie', u'child'],
  [u'waitress', u'trance', u'life', u'character', u'soap', u'opera'],
  [u'life', u'hitman', u'drug'],
  [u'situation', u'hospital', u'set', u'soap', u'opera'],
  [u'problem'],
  [u'vote', u'actress', u'oscar', u'nominee'],
  [u'performance', u'biography'],
  [u'diagnosis']],
 [[u'movie', u'crime', u'drama', u'comedy', u'way', u'movie', u'end'],
  [u'theater', u'scalping', u'scene'],
  [u'soap', u'opera', u'actor'],
  [u'ability', u'soap', u'scene', u'expression', u'voice', u'intonation'],
  [u'scene', u'sleepless', u'comedy'],
  [u'fascination', u'grandfather', u'scene', u'photograph', u'laugh'],
  [u'performance', u'moment'],
  [u'waitress', u'crude', u'husband', u'dirt'],
  [u'job', u'hospital', u'credential', u'movie'],
  [u'fan', u'movie'],
  [u'style', u'argument', u'sheriff', u'soap', u'opera'],
  [u'blood', u'violence', u'lot', u'language', u'watch', u'plenty', u'laugh']],
 [[u'spoiler',
   u'spoiler',
   u'spoiler',
   u'film',
   u'amusing.it',
   u'lot',
   u'line',
   u'film.however',
   u'problem',
   u'plot',
   u'simple.betty(renee',
   u'life',
   u'house',
   u'wife',
   u'husband',
   u'love',
   u'soap',
   u'series',
   u'character,dr'],
  [u'minute', u'film'],
  [u'film'],
  [u'reference',
   u'end',
   u'film',
   u'conclusion',
   u'place',
   u'home',
   u'conclusion',
   u'end',
   u'film',
   u'wonder',
   u'experience',
   u'answer',
   u'all.<br',
   u'film',
   u'reality',
   u'fantasy'],
  [u'scene',
   u'subject',
   u'joke',
   u'plot',
   u'line',
   u'film',
   u'way',
   u'subject',
   u'way).<br',
   u'film',
   u'soap',
   u'series',
   u'obsession',
   u'form',
   u'sympathy',
   u'obsession',
   u'one.<br',
   u'film',
   u'scene',
   u'subject',
   u'impact',
   u'characters.<br',
   u'make',
   u'before.it',
   u'shame',
   u'film',
   u'concentrate',
   u'subjects.as',
   u'lot',
   u'film,amusing']],
 [[u'comedy',
   u'year.<br',
   u'soap',
   u'opera',
   u'waitress',
   u'witness',
   u'husband',
   u'murder',
   u'hitman',
   u'member'],
  [u'heart',
   u'specialist',
   u'character',
   u'show).<br',
   u'hitman',
   u'fun',
   u'chemistry',
   u'fun',
   u'actor',
   u'persona'],
  [u'performance'],
  [u'goodness', u'warmth'],
  [u'script',
   u'sit-com',
   u'character',
   u'situation',
   u'together.<br',
   u'comedy',
   u'thing',
   u'winning',
   u'performance',
   u'script',
   u'delightful.<br']],
 [[u'way'],
  [u'ensemble',
   u'character',
   u'plot',
   u'heart',
   u'strings.<br',
   u'thing',
   u'movie',
   u'interaction'],
  [u'heart', u'fare', u'rest', u'life'],
  [u'it.<br',
   u'role',
   u'movie',
   u'touch',
   u'violence',
   u'bloodlust',
   u'male']],
 [[u'poster', u'pole'],
  [u'buzz', u'noise', u'try'],
  [u'movie', u'plot'],
  [u'role', u'woman', u'episode', u'experience'],
  [u'surprise', u'comedian'],
  [u'identity', u'crisis'],
  [u'cast'],
  [u'<br',
   u'complaint',
   u'director',
   u'splash',
   u'year',
   u'\x91in',
   u'company',
   u'convention'],
  [u'mood-creating', u'effect', u'throat', u'scene'],
  [u'character', u'end', u'romance', u'trick', u'home', u'smile', u'face'],
  [u'director',
   u'writer',
   u'audience',
   u'idiots??<br',
   u'movie',
   u'irritation'],
  [u'year', u'movie', u'rank', u'surprise']],
 [[u'story', u'guy', u'picture'],
  [u'story', u'female-hero', u'male-villain'],
  [u'person', u'face', u'face', u'inside']],
 ...]

In [160]:
import itertools as IT
import collections

def flatten_iter(iterable, ltypes=collections.Iterable):
    remainder = iter(iterable)
    while True:
        first = next(remainder)
        if isinstance(first, ltypes) and not isinstance(first, basestring):
            remainder = IT.chain(first, remainder)
        else:
            yield first

In [161]:
vocab_raw = list(flatten_iter(ldadata))
#removing duplicates
vocab_unique = []
for i in vocab_raw:
    if i not in vocab_unique:
        vocab_unique.append(i)

In [162]:
vocab = {}
for i in range(len(vocab_unique)):
    vocab[vocab_unique[i]] = i
    
id2word = {}
for i in range(len(vocab_unique)):
    id2word[i] = vocab_unique[i]

In [163]:
id2word[0], vocab.keys()[5], vocab[vocab.keys()[5]]


Out[163]:
(u'sure', u'yellow', 5224)

In [164]:
from collections import defaultdict

def auxillary_function(ldadata, vocab):
    d = defaultdict(int)
    for i in ldadata: 
        index = vocab[i]
        d[index] += 1
    return d.items()

In [165]:
all_reviews = []
for i in ldadata: # into a review
    this_review = []
    for j in i:
        for k in j: 
            if k not in this_review: 
                this_review.append(k)
    all_reviews.append(this_review)

corpus = []
for i in all_reviews: 
    corpus.append(auxillary_function(i, vocab))

In [166]:
corpus


Out[166]:
[[(0, 1),
  (1, 1),
  (2, 1),
  (3, 1),
  (4, 1),
  (5, 1),
  (6, 1),
  (7, 1),
  (8, 1),
  (9, 1),
  (10, 1),
  (11, 1),
  (12, 1),
  (13, 1),
  (14, 1),
  (15, 1),
  (16, 1),
  (17, 1),
  (18, 1),
  (19, 1),
  (20, 1),
  (21, 1)],
 [(1, 1),
  (10, 1),
  (22, 1),
  (23, 1),
  (24, 1),
  (25, 1),
  (26, 1),
  (27, 1),
  (28, 1)],
 [(1, 1),
  (29, 1),
  (30, 1),
  (31, 1),
  (32, 1),
  (33, 1),
  (34, 1),
  (35, 1),
  (36, 1),
  (37, 1),
  (38, 1),
  (39, 1),
  (40, 1),
  (41, 1),
  (42, 1),
  (43, 1),
  (44, 1),
  (45, 1),
  (46, 1),
  (47, 1),
  (48, 1),
  (49, 1),
  (50, 1)],
 [(64, 1),
  (1, 1),
  (66, 1),
  (67, 1),
  (4, 1),
  (69, 1),
  (68, 1),
  (65, 1),
  (51, 1),
  (52, 1),
  (53, 1),
  (54, 1),
  (55, 1),
  (56, 1),
  (57, 1),
  (58, 1),
  (59, 1),
  (60, 1),
  (61, 1),
  (62, 1),
  (63, 1)],
 [(1, 1),
  (2, 1),
  (25, 1),
  (30, 1),
  (48, 1),
  (55, 1),
  (61, 1),
  (70, 1),
  (71, 1),
  (72, 1),
  (73, 1),
  (74, 1),
  (75, 1),
  (76, 1),
  (77, 1),
  (78, 1),
  (79, 1),
  (80, 1),
  (81, 1),
  (82, 1),
  (83, 1),
  (84, 1),
  (85, 1),
  (86, 1),
  (87, 1),
  (88, 1),
  (89, 1),
  (90, 1),
  (91, 1),
  (92, 1),
  (93, 1),
  (94, 1),
  (95, 1),
  (96, 1),
  (97, 1),
  (98, 1),
  (99, 1),
  (100, 1),
  (101, 1),
  (102, 1),
  (103, 1),
  (104, 1),
  (105, 1),
  (106, 1),
  (107, 1),
  (108, 1),
  (109, 1),
  (110, 1),
  (111, 1),
  (112, 1),
  (113, 1),
  (114, 1)],
 [(1, 1),
  (73, 1),
  (42, 1),
  (115, 1),
  (116, 1),
  (117, 1),
  (118, 1),
  (119, 1),
  (94, 1)],
 [(128, 1),
  (1, 1),
  (129, 1),
  (73, 1),
  (13, 1),
  (96, 1),
  (117, 1),
  (120, 1),
  (121, 1),
  (122, 1),
  (123, 1),
  (124, 1),
  (125, 1),
  (126, 1),
  (127, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (13, 1),
  (14, 1),
  (16, 1),
  (21, 1),
  (25, 1),
  (35, 1),
  (37, 1),
  (45, 1),
  (48, 1),
  (60, 1),
  (77, 1),
  (106, 1),
  (117, 1),
  (120, 1),
  (121, 1),
  (124, 1),
  (128, 1),
  (130, 1),
  (131, 1),
  (132, 1),
  (133, 1),
  (134, 1),
  (135, 1),
  (136, 1),
  (137, 1),
  (138, 1),
  (139, 1),
  (140, 1),
  (141, 1),
  (142, 1),
  (143, 1),
  (144, 1),
  (145, 1),
  (146, 1),
  (147, 1),
  (148, 1),
  (149, 1),
  (150, 1),
  (151, 1),
  (152, 1),
  (153, 1),
  (154, 1),
  (155, 1),
  (156, 1),
  (157, 1),
  (158, 1),
  (159, 1),
  (160, 1),
  (161, 1),
  (162, 1),
  (163, 1),
  (164, 1),
  (165, 1),
  (166, 1),
  (167, 1),
  (168, 1),
  (169, 1),
  (170, 1),
  (171, 1),
  (172, 1),
  (173, 1),
  (174, 1),
  (175, 1),
  (176, 1),
  (177, 1),
  (178, 1),
  (179, 1),
  (180, 1),
  (181, 1),
  (182, 1),
  (183, 1),
  (184, 1),
  (185, 1),
  (186, 1),
  (187, 1),
  (188, 1),
  (189, 1),
  (190, 1),
  (191, 1),
  (192, 1),
  (193, 1),
  (194, 1),
  (195, 1),
  (196, 1),
  (197, 1),
  (198, 1),
  (199, 1),
  (200, 1),
  (201, 1),
  (202, 1),
  (203, 1),
  (204, 1),
  (205, 1),
  (206, 1),
  (207, 1),
  (208, 1),
  (209, 1),
  (210, 1),
  (211, 1),
  (212, 1),
  (213, 1),
  (214, 1),
  (215, 1),
  (216, 1),
  (217, 1),
  (218, 1),
  (219, 1),
  (220, 1),
  (221, 1),
  (222, 1)],
 [(128, 1),
  (1, 1),
  (24, 1),
  (30, 1),
  (36, 1),
  (169, 1),
  (43, 1),
  (173, 1),
  (60, 1),
  (61, 1),
  (62, 1),
  (94, 1),
  (223, 1),
  (224, 1),
  (225, 1),
  (226, 1),
  (227, 1),
  (228, 1),
  (229, 1),
  (230, 1),
  (231, 1),
  (232, 1),
  (233, 1),
  (234, 1),
  (235, 1),
  (236, 1),
  (237, 1),
  (238, 1),
  (239, 1),
  (240, 1),
  (241, 1),
  (242, 1),
  (243, 1),
  (244, 1),
  (245, 1),
  (246, 1)],
 [(1, 1),
  (2, 1),
  (36, 1),
  (169, 1),
  (147, 1),
  (117, 1),
  (247, 1),
  (248, 1),
  (249, 1),
  (250, 1),
  (251, 1),
  (30, 1)],
 [(256, 1),
  (257, 1),
  (258, 1),
  (259, 1),
  (260, 1),
  (261, 1),
  (262, 1),
  (1, 1),
  (264, 1),
  (233, 1),
  (106, 1),
  (263, 1),
  (13, 1),
  (147, 1),
  (252, 1),
  (253, 1),
  (254, 1),
  (255, 1)],
 [(128, 1),
  (48, 1),
  (267, 1),
  (4, 1),
  (103, 1),
  (73, 1),
  (266, 1),
  (107, 1),
  (268, 1),
  (13, 1),
  (270, 1),
  (269, 1),
  (272, 1),
  (273, 1),
  (274, 1),
  (275, 1),
  (265, 1),
  (55, 1),
  (271, 1),
  (106, 1)],
 [(1, 1),
  (3, 1),
  (150, 1),
  (209, 1),
  (169, 1),
  (10, 1),
  (206, 1),
  (15, 1),
  (241, 1),
  (276, 1),
  (277, 1),
  (278, 1),
  (279, 1),
  (280, 1),
  (26, 1)],
 [(288, 1),
  (289, 1),
  (290, 1),
  (291, 1),
  (197, 1),
  (134, 1),
  (231, 1),
  (14, 1),
  (16, 1),
  (213, 1),
  (281, 1),
  (282, 1),
  (283, 1),
  (284, 1),
  (285, 1),
  (286, 1),
  (287, 1)],
 [(292, 1), (293, 1), (52, 1), (54, 1), (55, 1), (4, 1), (29, 1), (30, 1)],
 [(1, 1),
  (4, 1),
  (342, 1),
  (135, 1),
  (267, 1),
  (12, 1),
  (13, 1),
  (15, 1),
  (24, 1),
  (150, 1),
  (151, 1),
  (280, 1),
  (26, 1),
  (346, 1),
  (176, 1),
  (214, 1),
  (304, 1),
  (294, 1),
  (295, 1),
  (296, 1),
  (297, 1),
  (298, 1),
  (299, 1),
  (300, 1),
  (301, 1),
  (302, 1),
  (303, 1),
  (48, 1),
  (305, 1),
  (306, 1),
  (307, 1),
  (308, 1),
  (309, 1),
  (310, 1),
  (311, 1),
  (312, 1),
  (313, 1),
  (314, 1),
  (315, 1),
  (316, 1),
  (317, 1),
  (318, 1),
  (319, 1),
  (320, 1),
  (321, 1),
  (322, 1),
  (323, 1),
  (324, 1),
  (325, 1),
  (326, 1),
  (327, 1),
  (328, 1),
  (329, 1),
  (330, 1),
  (55, 1),
  (332, 1),
  (333, 1),
  (78, 1),
  (335, 1),
  (336, 1),
  (337, 1),
  (338, 1),
  (339, 1),
  (340, 1),
  (334, 1),
  (203, 1),
  (343, 1),
  (7, 1),
  (345, 1),
  (331, 1),
  (94, 1),
  (344, 1),
  (103, 1),
  (106, 1),
  (39, 1),
  (114, 1),
  (244, 1),
  (245, 1),
  (120, 1),
  (341, 1)],
 [(1, 1),
  (4, 1),
  (264, 1),
  (13, 1),
  (150, 1),
  (151, 1),
  (26, 1),
  (307, 1),
  (55, 1),
  (214, 1),
  (90, 1),
  (347, 1),
  (348, 1),
  (349, 1),
  (350, 1),
  (351, 1),
  (352, 1),
  (353, 1),
  (354, 1),
  (355, 1),
  (356, 1),
  (357, 1),
  (358, 1),
  (359, 1),
  (360, 1),
  (361, 1),
  (106, 1),
  (363, 1),
  (364, 1),
  (365, 1),
  (366, 1),
  (367, 1),
  (123, 1),
  (362, 1)],
 [(384, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (267, 1),
  (142, 1),
  (150, 1),
  (280, 1),
  (169, 1),
  (303, 1),
  (75, 1),
  (347, 1),
  (368, 1),
  (369, 1),
  (370, 1),
  (371, 1),
  (372, 1),
  (373, 1),
  (374, 1),
  (375, 1),
  (376, 1),
  (377, 1),
  (378, 1),
  (379, 1),
  (380, 1),
  (381, 1),
  (382, 1),
  (383, 1)],
 [(385, 1),
  (386, 1),
  (387, 1),
  (388, 1),
  (389, 1),
  (390, 1),
  (1, 1),
  (392, 1),
  (393, 1),
  (394, 1),
  (395, 1),
  (396, 1),
  (397, 1),
  (14, 1),
  (399, 1),
  (150, 1),
  (4, 1),
  (30, 1),
  (169, 1),
  (391, 1),
  (286, 1),
  (55, 1),
  (72, 1),
  (75, 1),
  (207, 1),
  (398, 1),
  (347, 1),
  (245, 1),
  (120, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (261, 1),
  (263, 1),
  (30, 1),
  (13, 1),
  (400, 1),
  (401, 1),
  (402, 1),
  (403, 1),
  (404, 1),
  (405, 1),
  (406, 1),
  (407, 1),
  (408, 1),
  (409, 1),
  (410, 1),
  (411, 1),
  (412, 1),
  (413, 1),
  (414, 1),
  (415, 1),
  (416, 1),
  (417, 1),
  (418, 1),
  (35, 1),
  (420, 1),
  (37, 1),
  (422, 1),
  (423, 1),
  (424, 1),
  (425, 1),
  (426, 1),
  (427, 1),
  (428, 1),
  (429, 1),
  (430, 1),
  (175, 1),
  (48, 1),
  (433, 1),
  (432, 1),
  (309, 1),
  (197, 1),
  (73, 1),
  (330, 1),
  (205, 1),
  (419, 1),
  (24, 1),
  (218, 1),
  (421, 1),
  (105, 1),
  (431, 1)],
 [(1, 1),
  (4, 1),
  (343, 1),
  (144, 1),
  (434, 1),
  (435, 1),
  (180, 1),
  (437, 1),
  (438, 1),
  (151, 1),
  (436, 1)],
 [(0, 1),
  (99, 1),
  (4, 1),
  (13, 1),
  (143, 1),
  (144, 1),
  (147, 1),
  (213, 1),
  (182, 1),
  (439, 1),
  (440, 1),
  (441, 1),
  (442, 1),
  (443, 1),
  (444, 1),
  (445, 1),
  (446, 1),
  (117, 1)],
 [(1, 1), (143, 1), (447, 1)],
 [(173, 1)],
 [(2, 1),
  (4, 1),
  (321, 1),
  (137, 1),
  (13, 1),
  (16, 1),
  (21, 1),
  (170, 1),
  (299, 1),
  (173, 1),
  (48, 1),
  (178, 1),
  (180, 1),
  (187, 1),
  (448, 1),
  (449, 1),
  (450, 1),
  (451, 1),
  (452, 1),
  (453, 1),
  (454, 1),
  (455, 1),
  (456, 1),
  (457, 1),
  (458, 1),
  (459, 1),
  (460, 1),
  (461, 1),
  (462, 1),
  (141, 1),
  (464, 1),
  (465, 1),
  (466, 1),
  (467, 1),
  (468, 1),
  (463, 1),
  (100, 1),
  (101, 1),
  (106, 1),
  (236, 1),
  (370, 1),
  (114, 1),
  (117, 1),
  (121, 1)],
 [(1, 1),
  (2, 1),
  (140, 1),
  (13, 1),
  (14, 1),
  (16, 1),
  (150, 1),
  (283, 1),
  (30, 1),
  (48, 1),
  (52, 1),
  (55, 1),
  (56, 1),
  (187, 1),
  (330, 1),
  (197, 1),
  (198, 1),
  (74, 1),
  (77, 1),
  (469, 1),
  (470, 1),
  (471, 1),
  (472, 1),
  (473, 1),
  (474, 1),
  (475, 1),
  (476, 1),
  (477, 1),
  (478, 1),
  (479, 1),
  (480, 1),
  (481, 1),
  (482, 1),
  (483, 1),
  (484, 1),
  (485, 1),
  (486, 1),
  (487, 1),
  (488, 1),
  (489, 1),
  (490, 1),
  (491, 1),
  (492, 1),
  (317, 1),
  (122, 1),
  (123, 1),
  (383, 1)],
 [],
 [(150, 1),
  (73, 1),
  (170, 1),
  (13, 1),
  (493, 1),
  (494, 1),
  (495, 1),
  (496, 1),
  (497, 1),
  (307, 1),
  (117, 1),
  (214, 1),
  (62, 1)],
 [(1, 1),
  (507, 1),
  (510, 1),
  (23, 1),
  (499, 1),
  (498, 1),
  (147, 1),
  (500, 1),
  (501, 1),
  (502, 1),
  (503, 1),
  (504, 1),
  (505, 1),
  (506, 1),
  (463, 1),
  (508, 1),
  (509, 1),
  (30, 1)],
 [(1, 1), (100, 1), (73, 1), (50, 1), (182, 1), (123, 1)],
 [(440, 1), (21, 1), (511, 1)],
 [(512, 1),
  (513, 1),
  (514, 1),
  (515, 1),
  (516, 1),
  (517, 1),
  (518, 1),
  (519, 1),
  (77, 1),
  (182, 1),
  (280, 1),
  (121, 1),
  (478, 1)],
 [(4, 1),
  (261, 1),
  (520, 1),
  (521, 1),
  (394, 1),
  (142, 1),
  (463, 1),
  (50, 1),
  (121, 1),
  (522, 1),
  (62, 1)],
 [(1, 1),
  (100, 1),
  (524, 1),
  (106, 1),
  (523, 1),
  (12, 1),
  (365, 1),
  (526, 1),
  (525, 1),
  (16, 1),
  (50, 1),
  (110, 1),
  (182, 1),
  (283, 1),
  (62, 1),
  (127, 1)],
 [(128, 1),
  (1, 1),
  (4, 1),
  (134, 1),
  (9, 1),
  (23, 1),
  (13, 1),
  (143, 1),
  (528, 1),
  (529, 1),
  (530, 1),
  (531, 1),
  (532, 1),
  (533, 1),
  (534, 1),
  (535, 1),
  (536, 1),
  (537, 1),
  (538, 1),
  (539, 1),
  (540, 1),
  (541, 1),
  (542, 1),
  (543, 1),
  (544, 1),
  (545, 1),
  (546, 1),
  (547, 1),
  (548, 1),
  (262, 1),
  (550, 1),
  (48, 1),
  (302, 1),
  (176, 1),
  (182, 1),
  (62, 1),
  (523, 1),
  (197, 1),
  (77, 1),
  (207, 1),
  (345, 1),
  (527, 1),
  (549, 1),
  (144, 1),
  (240, 1),
  (117, 1),
  (120, 1)],
 [(552, 1), (1, 1), (2, 1), (100, 1), (551, 1)],
 [(1, 1),
  (553, 1),
  (554, 1),
  (555, 1),
  (556, 1),
  (557, 1),
  (14, 1),
  (114, 1),
  (558, 1),
  (55, 1)],
 [(1, 1),
  (482, 1),
  (10, 1),
  (146, 1),
  (559, 1),
  (560, 1),
  (561, 1),
  (562, 1),
  (563, 1),
  (564, 1),
  (565, 1),
  (566, 1),
  (567, 1),
  (568, 1),
  (569, 1),
  (570, 1),
  (447, 1)],
 [(1, 1),
  (187, 1),
  (4, 1),
  (529, 1),
  (176, 1),
  (209, 1),
  (50, 1),
  (150, 1),
  (571, 1),
  (572, 1),
  (573, 1),
  (574, 1)],
 [(576, 1),
  (577, 1),
  (578, 1),
  (579, 1),
  (580, 1),
  (581, 1),
  (582, 1),
  (1, 1),
  (521, 1),
  (583, 1),
  (558, 1),
  (563, 1),
  (147, 1),
  (566, 1),
  (151, 1),
  (26, 1),
  (255, 1),
  (93, 1),
  (575, 1)],
 [(1, 1),
  (619, 1),
  (4, 1),
  (601, 1),
  (620, 1),
  (13, 1),
  (529, 1),
  (150, 1),
  (151, 1),
  (30, 1),
  (545, 1),
  (99, 1),
  (164, 1),
  (605, 1),
  (48, 1),
  (563, 1),
  (180, 1),
  (73, 1),
  (330, 1),
  (573, 1),
  (446, 1),
  (203, 1),
  (584, 1),
  (585, 1),
  (586, 1),
  (587, 1),
  (588, 1),
  (589, 1),
  (590, 1),
  (591, 1),
  (592, 1),
  (593, 1),
  (594, 1),
  (595, 1),
  (596, 1),
  (597, 1),
  (598, 1),
  (599, 1),
  (600, 1),
  (345, 1),
  (602, 1),
  (603, 1),
  (604, 1),
  (93, 1),
  (606, 1),
  (607, 1),
  (608, 1),
  (609, 1),
  (610, 1),
  (611, 1),
  (612, 1),
  (613, 1),
  (614, 1),
  (615, 1),
  (616, 1),
  (617, 1),
  (362, 1),
  (107, 1),
  (463, 1),
  (82, 1),
  (61, 1),
  (123, 1),
  (618, 1),
  (255, 1)],
 [(512, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (30, 1),
  (560, 1),
  (563, 1),
  (182, 1),
  (88, 1),
  (606, 1),
  (616, 1),
  (618, 1),
  (621, 1),
  (622, 1),
  (623, 1),
  (624, 1),
  (625, 1),
  (626, 1),
  (627, 1),
  (628, 1),
  (629, 1),
  (630, 1),
  (631, 1),
  (106, 1),
  (383, 1)],
 [(48, 1), (1, 1), (632, 1)],
 [(128, 1),
  (1, 1),
  (640, 1),
  (4, 1),
  (136, 1),
  (636, 1),
  (330, 1),
  (13, 1),
  (557, 1),
  (558, 1),
  (637, 1),
  (638, 1),
  (244, 1),
  (309, 1),
  (633, 1),
  (538, 1),
  (635, 1),
  (606, 1),
  (634, 1),
  (94, 1),
  (639, 1)],
 [(641, 1),
  (642, 1),
  (643, 1),
  (4, 1),
  (645, 1),
  (646, 1),
  (1, 1),
  (648, 1),
  (649, 1),
  (650, 1),
  (2, 1),
  (143, 1),
  (150, 1),
  (644, 1),
  (647, 1),
  (563, 1),
  (182, 1),
  (584, 1),
  (585, 1),
  (589, 1),
  (13, 1),
  (600, 1),
  (602, 1),
  (93, 1),
  (606, 1),
  (103, 1),
  (362, 1)],
 [(1, 1),
  (262, 1),
  (649, 1),
  (651, 1),
  (652, 1),
  (653, 1),
  (654, 1),
  (655, 1),
  (656, 1),
  (657, 1),
  (658, 1),
  (659, 1),
  (660, 1),
  (34, 1),
  (560, 1),
  (564, 1),
  (565, 1),
  (567, 1),
  (440, 1),
  (327, 1),
  (584, 1),
  (204, 1),
  (589, 1),
  (602, 1),
  (93, 1),
  (613, 1),
  (234, 1),
  (109, 1),
  (499, 1),
  (117, 1),
  (632, 1)],
 [(512, 1),
  (1, 1),
  (2, 1),
  (683, 1),
  (4, 1),
  (150, 1),
  (263, 1),
  (520, 1),
  (172, 1),
  (128, 1),
  (13, 1),
  (142, 1),
  (145, 1),
  (146, 1),
  (691, 1),
  (660, 1),
  (661, 1),
  (662, 1),
  (663, 1),
  (664, 1),
  (665, 1),
  (666, 1),
  (667, 1),
  (668, 1),
  (669, 1),
  (670, 1),
  (671, 1),
  (672, 1),
  (673, 1),
  (674, 1),
  (675, 1),
  (676, 1),
  (677, 1),
  (678, 1),
  (679, 1),
  (680, 1),
  (681, 1),
  (682, 1),
  (43, 1),
  (684, 1),
  (685, 1),
  (302, 1),
  (687, 1),
  (176, 1),
  (561, 1),
  (10, 1),
  (563, 1),
  (692, 1),
  (693, 1),
  (182, 1),
  (567, 1),
  (116, 1),
  (187, 1),
  (61, 1),
  (62, 1),
  (383, 1),
  (583, 1),
  (688, 1),
  (589, 1),
  (207, 1),
  (24, 1),
  (600, 1),
  (689, 1),
  (93, 1),
  (606, 1),
  (610, 1),
  (123, 1),
  (100, 1),
  (613, 1),
  (529, 1),
  (362, 1),
  (107, 1),
  (284, 1),
  (237, 1),
  (50, 1),
  (627, 1),
  (372, 1),
  (77, 1),
  (690, 1),
  (397, 1),
  (635, 1),
  (298, 1),
  (686, 1)],
 [(1, 1),
  (34, 1),
  (616, 1),
  (234, 1),
  (55, 1),
  (2, 1),
  (52, 1),
  (694, 1),
  (695, 1),
  (696, 1),
  (697, 1),
  (698, 1),
  (699, 1),
  (188, 1),
  (317, 1)],
 [(704, 1),
  (705, 1),
  (584, 1),
  (169, 1),
  (589, 1),
  (78, 1),
  (48, 1),
  (147, 1),
  (599, 1),
  (187, 1),
  (700, 1),
  (701, 1),
  (702, 1),
  (703, 1)],
 [(128, 1), (1, 1), (706, 1), (613, 1), (10, 1), (50, 1), (114, 1), (93, 1)],
 [(608, 1),
  (1, 1),
  (707, 1),
  (708, 1),
  (613, 1),
  (550, 1),
  (584, 1),
  (672, 1),
  (557, 1),
  (306, 1),
  (563, 1),
  (480, 1),
  (88, 1),
  (26, 1),
  (315, 1),
  (562, 1),
  (93, 1),
  (389, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (267, 1),
  (674, 1),
  (169, 1),
  (713, 1),
  (48, 1),
  (712, 1),
  (50, 1),
  (563, 1),
  (567, 1),
  (573, 1),
  (709, 1),
  (710, 1),
  (711, 1),
  (584, 1),
  (73, 1),
  (714, 1),
  (715, 1),
  (34, 1),
  (598, 1),
  (600, 1),
  (602, 1),
  (93, 1),
  (100, 1),
  (632, 1)],
 [(1, 1),
  (34, 1),
  (4, 1),
  (262, 1),
  (716, 1),
  (717, 1),
  (718, 1),
  (719, 1),
  (435, 1),
  (150, 1)],
 [(1, 1), (10, 1), (13, 1), (48, 1), (563, 1), (435, 1), (182, 1), (30, 1)],
 [(1, 1), (561, 1)],
 [(1, 1),
  (2, 1),
  (613, 1),
  (561, 1),
  (210, 1),
  (649, 1),
  (290, 1),
  (720, 1),
  (721, 1),
  (722, 1),
  (723, 1),
  (724, 1),
  (73, 1),
  (348, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (264, 1),
  (298, 1),
  (13, 1),
  (16, 1),
  (20, 1),
  (725, 1),
  (726, 1),
  (727, 1),
  (180, 1),
  (571, 1),
  (30, 1)],
 [(128, 1),
  (512, 1),
  (2, 1),
  (4, 1),
  (134, 1),
  (263, 1),
  (13, 1),
  (14, 1),
  (144, 1),
  (742, 1),
  (738, 1),
  (538, 1),
  (547, 1),
  (173, 1),
  (562, 1),
  (243, 1),
  (447, 1),
  (435, 1),
  (77, 1),
  (397, 1),
  (728, 1),
  (729, 1),
  (730, 1),
  (731, 1),
  (732, 1),
  (733, 1),
  (734, 1),
  (735, 1),
  (736, 1),
  (737, 1),
  (610, 1),
  (739, 1),
  (740, 1),
  (741, 1),
  (230, 1),
  (743, 1),
  (744, 1),
  (745, 1),
  (746, 1),
  (747, 1),
  (748, 1),
  (499, 1),
  (116, 1)],
 [(768, 1),
  (769, 1),
  (770, 1),
  (771, 1),
  (4, 1),
  (773, 1),
  (774, 1),
  (141, 1),
  (271, 1),
  (772, 1),
  (29, 1),
  (421, 1),
  (300, 1),
  (370, 1),
  (53, 1),
  (694, 1),
  (55, 1),
  (58, 1),
  (60, 1),
  (765, 1),
  (198, 1),
  (74, 1),
  (470, 1),
  (478, 1),
  (188, 1),
  (234, 1),
  (749, 1),
  (750, 1),
  (751, 1),
  (752, 1),
  (753, 1),
  (754, 1),
  (755, 1),
  (756, 1),
  (757, 1),
  (758, 1),
  (759, 1),
  (760, 1),
  (761, 1),
  (762, 1),
  (763, 1),
  (764, 1),
  (106, 1),
  (766, 1),
  (767, 1)],
 [(1, 1),
  (4, 1),
  (790, 1),
  (775, 1),
  (776, 1),
  (777, 1),
  (778, 1),
  (779, 1),
  (780, 1),
  (781, 1),
  (782, 1),
  (783, 1),
  (784, 1),
  (785, 1),
  (786, 1),
  (787, 1),
  (788, 1),
  (789, 1),
  (150, 1),
  (791, 1),
  (792, 1),
  (793, 1),
  (794, 1),
  (795, 1),
  (796, 1),
  (797, 1),
  (798, 1),
  (543, 1),
  (42, 1),
  (557, 1),
  (48, 1),
  (50, 1),
  (799, 1),
  (13, 1),
  (450, 1),
  (455, 1),
  (73, 1),
  (397, 1),
  (14, 1),
  (602, 1),
  (479, 1),
  (225, 1),
  (226, 1),
  (529, 1),
  (230, 1),
  (487, 1),
  (499, 1)],
 [(1, 1),
  (4, 1),
  (13, 1),
  (14, 1),
  (557, 1),
  (20, 1),
  (30, 1),
  (800, 1),
  (801, 1),
  (802, 1),
  (803, 1),
  (804, 1),
  (805, 1),
  (806, 1),
  (807, 1),
  (808, 1),
  (809, 1),
  (810, 1),
  (811, 1),
  (812, 1),
  (813, 1),
  (814, 1),
  (815, 1),
  (48, 1),
  (817, 1),
  (818, 1),
  (819, 1),
  (820, 1),
  (821, 1),
  (822, 1),
  (823, 1),
  (824, 1),
  (825, 1),
  (826, 1),
  (827, 1),
  (828, 1),
  (317, 1),
  (830, 1),
  (816, 1),
  (73, 1),
  (207, 1),
  (733, 1),
  (50, 1),
  (829, 1),
  (121, 1),
  (42, 1)],
 [(832, 1), (1, 1), (4, 1), (169, 1), (298, 1), (302, 1), (10, 1), (831, 1)],
 [(672, 1), (833, 1), (2, 1), (581, 1), (463, 1), (210, 1)],
 [(834, 1), (835, 1), (4, 1), (103, 1), (73, 1), (782, 1), (24, 1), (602, 1)],
 [(1, 1),
  (836, 1),
  (837, 1),
  (459, 1),
  (207, 1),
  (499, 1),
  (216, 1),
  (30, 1),
  (799, 1)],
 [(1, 1),
  (4, 1),
  (262, 1),
  (838, 1),
  (839, 1),
  (840, 1),
  (841, 1),
  (10, 1),
  (48, 1),
  (180, 1),
  (799, 1)],
 [(848, 1),
  (1, 1),
  (613, 1),
  (842, 1),
  (843, 1),
  (844, 1),
  (13, 1),
  (846, 1),
  (845, 1),
  (48, 1),
  (499, 1),
  (116, 1),
  (150, 1),
  (151, 1),
  (24, 1),
  (121, 1),
  (602, 1),
  (847, 1)],
 [(2, 1),
  (4, 1),
  (854, 1),
  (10, 1),
  (13, 1),
  (856, 1),
  (788, 1),
  (795, 1),
  (669, 1),
  (819, 1),
  (184, 1),
  (185, 1),
  (71, 1),
  (73, 1),
  (75, 1),
  (849, 1),
  (850, 1),
  (851, 1),
  (852, 1),
  (853, 1),
  (342, 1),
  (855, 1),
  (600, 1),
  (857, 1),
  (858, 1),
  (859, 1),
  (738, 1),
  (483, 1),
  (100, 1),
  (721, 1),
  (239, 1),
  (499, 1),
  (123, 1)],
 [(864, 1),
  (1, 1),
  (865, 1),
  (353, 1),
  (73, 1),
  (2, 1),
  (13, 1),
  (272, 1),
  (24, 1),
  (240, 1),
  (529, 1),
  (866, 1),
  (499, 1),
  (150, 1),
  (184, 1),
  (602, 1),
  (863, 1),
  (860, 1),
  (861, 1),
  (862, 1),
  (543, 1)],
 [(896, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (520, 1),
  (13, 1),
  (14, 1),
  (783, 1),
  (529, 1),
  (388, 1),
  (239, 1),
  (545, 1),
  (803, 1),
  (43, 1),
  (882, 1),
  (50, 1),
  (52, 1),
  (565, 1),
  (54, 1),
  (884, 1),
  (60, 1),
  (61, 1),
  (63, 1),
  (327, 1),
  (209, 1),
  (867, 1),
  (868, 1),
  (869, 1),
  (870, 1),
  (871, 1),
  (872, 1),
  (873, 1),
  (874, 1),
  (875, 1),
  (876, 1),
  (877, 1),
  (878, 1),
  (879, 1),
  (880, 1),
  (881, 1),
  (370, 1),
  (883, 1),
  (628, 1),
  (885, 1),
  (886, 1),
  (887, 1),
  (888, 1),
  (889, 1),
  (890, 1),
  (891, 1),
  (892, 1),
  (893, 1),
  (894, 1),
  (895, 1)],
 [(897, 1),
  (898, 1),
  (899, 1),
  (4, 1),
  (901, 1),
  (262, 1),
  (903, 1),
  (904, 1),
  (905, 1),
  (906, 1),
  (907, 1),
  (908, 1),
  (909, 1),
  (910, 1),
  (911, 1),
  (912, 1),
  (913, 1),
  (914, 1),
  (915, 1),
  (916, 1),
  (149, 1),
  (918, 1),
  (919, 1),
  (917, 1),
  (900, 1),
  (282, 1),
  (923, 1),
  (924, 1),
  (922, 1),
  (543, 1),
  (1, 1),
  (902, 1),
  (806, 1),
  (807, 1),
  (920, 1),
  (169, 1),
  (684, 1),
  (626, 1),
  (815, 1),
  (562, 1),
  (691, 1),
  (182, 1),
  (439, 1),
  (23, 1),
  (571, 1),
  (60, 1),
  (778, 1),
  (62, 1),
  (799, 1),
  (782, 1),
  (835, 1),
  (455, 1),
  (840, 1),
  (73, 1),
  (330, 1),
  (759, 1),
  (204, 1),
  (925, 1),
  (13, 1),
  (921, 1),
  (725, 1),
  (24, 1),
  (599, 1),
  (459, 1),
  (743, 1),
  (234, 1),
  (573, 1),
  (242, 1),
  (499, 1),
  (119, 1),
  (511, 1)],
 [(4, 1), (73, 1), (333, 1), (146, 1), (343, 1), (926, 1)],
 [(1, 1),
  (268, 1),
  (13, 1),
  (14, 1),
  (25, 1),
  (927, 1),
  (928, 1),
  (929, 1),
  (930, 1),
  (931, 1),
  (932, 1),
  (933, 1),
  (934, 1),
  (935, 1),
  (936, 1),
  (937, 1),
  (938, 1),
  (180, 1),
  (183, 1),
  (60, 1),
  (602, 1),
  (486, 1),
  (616, 1),
  (754, 1),
  (115, 1),
  (117, 1)],
 [(1, 1),
  (290, 1),
  (939, 1),
  (141, 1),
  (143, 1),
  (497, 1),
  (147, 1),
  (180, 1),
  (246, 1),
  (311, 1)],
 [(1, 1), (143, 1), (61, 1), (239, 1)],
 [(640, 1), (36, 1), (940, 1), (941, 1), (942, 1), (943, 1), (602, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (262, 1),
  (649, 1),
  (143, 1),
  (951, 1),
  (22, 1),
  (285, 1),
  (30, 1),
  (944, 1),
  (945, 1),
  (946, 1),
  (947, 1),
  (948, 1),
  (949, 1),
  (950, 1),
  (567, 1),
  (952, 1),
  (953, 1),
  (954, 1),
  (62, 1),
  (458, 1),
  (311, 1),
  (463, 1),
  (93, 1),
  (99, 1),
  (758, 1)],
 [(1, 1),
  (4, 1),
  (13, 1),
  (147, 1),
  (24, 1),
  (798, 1),
  (675, 1),
  (173, 1),
  (562, 1),
  (435, 1),
  (955, 1),
  (956, 1),
  (957, 1),
  (958, 1),
  (959, 1),
  (960, 1),
  (961, 1),
  (962, 1),
  (963, 1),
  (964, 1),
  (965, 1),
  (966, 1),
  (967, 1),
  (461, 1),
  (479, 1),
  (610, 1),
  (50, 1),
  (101, 1),
  (240, 1),
  (631, 1),
  (120, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (968, 1),
  (969, 1),
  (970, 1),
  (207, 1),
  (116, 1),
  (151, 1),
  (143, 1),
  (383, 1)],
 [(512, 1),
  (1, 1),
  (4, 1),
  (207, 1),
  (778, 1),
  (13, 1),
  (14, 1),
  (912, 1),
  (403, 1),
  (917, 1),
  (23, 1),
  (286, 1),
  (35, 1),
  (798, 1),
  (931, 1),
  (933, 1),
  (178, 1),
  (48, 1),
  (50, 1),
  (30, 1),
  (309, 1),
  (182, 1),
  (183, 1),
  (61, 1),
  (321, 1),
  (75, 1),
  (73, 1),
  (971, 1),
  (972, 1),
  (973, 1),
  (974, 1),
  (975, 1),
  (976, 1),
  (977, 1),
  (978, 1),
  (979, 1),
  (980, 1),
  (981, 1),
  (982, 1),
  (983, 1),
  (984, 1),
  (985, 1),
  (986, 1),
  (987, 1),
  (988, 1),
  (989, 1),
  (990, 1),
  (483, 1),
  (105, 1),
  (127, 1),
  (749, 1),
  (117, 1),
  (383, 1),
  (895, 1)],
 [(512, 1),
  (1, 1),
  (4, 1),
  (262, 1),
  (264, 1),
  (780, 1),
  (666, 1),
  (26, 1),
  (896, 1),
  (292, 1),
  (819, 1),
  (55, 1),
  (991, 1),
  (62, 1),
  (74, 1),
  (718, 1),
  (932, 1),
  (94, 1),
  (997, 1),
  (992, 1),
  (993, 1),
  (994, 1),
  (995, 1),
  (996, 1),
  (229, 1),
  (998, 1),
  (999, 1),
  (1000, 1),
  (1001, 1),
  (490, 1),
  (1003, 1),
  (1004, 1),
  (1005, 1),
  (1006, 1),
  (1007, 1),
  (1008, 1),
  (121, 1),
  (1002, 1)],
 [(1, 1),
  (234, 1),
  (499, 1),
  (143, 1),
  (1009, 1),
  (1010, 1),
  (1011, 1),
  (1012, 1),
  (1013, 1),
  (1014, 1)],
 [(128, 1),
  (1, 1),
  (1025, 1),
  (649, 1),
  (10, 1),
  (268, 1),
  (143, 1),
  (144, 1),
  (1024, 1),
  (182, 1),
  (140, 1),
  (94, 1),
  (234, 1),
  (754, 1),
  (1011, 1),
  (1015, 1),
  (1016, 1),
  (1017, 1),
  (1018, 1),
  (1019, 1),
  (1020, 1),
  (1021, 1),
  (1022, 1),
  (1023, 1)],
 [(1, 1),
  (1026, 1),
  (1027, 1),
  (1028, 1),
  (5, 1),
  (1030, 1),
  (1031, 1),
  (1032, 1),
  (1033, 1),
  (2, 1),
  (403, 1),
  (4, 1),
  (798, 1),
  (1029, 1),
  (933, 1),
  (941, 1),
  (180, 1),
  (565, 1),
  (967, 1),
  (73, 1),
  (75, 1),
  (77, 1),
  (205, 1),
  (103, 1),
  (872, 1),
  (105, 1),
  (491, 1),
  (239, 1),
  (616, 1),
  (246, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (918, 1),
  (1034, 1),
  (1035, 1),
  (1036, 1),
  (1037, 1),
  (1038, 1),
  (1039, 1),
  (1040, 1),
  (1041, 1),
  (18, 1),
  (1043, 1),
  (1044, 1),
  (1045, 1),
  (150, 1),
  (151, 1),
  (986, 1),
  (542, 1),
  (288, 1),
  (30, 1),
  (62, 1),
  (1042, 1),
  (967, 1),
  (75, 1),
  (222, 1),
  (213, 1),
  (214, 1),
  (602, 1),
  (988, 1),
  (478, 1),
  (272, 1),
  (99, 1),
  (101, 1),
  (749, 1),
  (111, 1),
  (242, 1),
  (383, 1)],
 [(1, 1),
  (282, 1),
  (4, 1),
  (15, 1),
  (16, 1),
  (1048, 1),
  (1046, 1),
  (1047, 1),
  (24, 1),
  (1049, 1),
  (1050, 1),
  (1051, 1),
  (1052, 1),
  (1053, 1),
  (1054, 1),
  (1055, 1),
  (1056, 1),
  (33, 1),
  (1058, 1),
  (35, 1),
  (36, 1),
  (1061, 1),
  (1062, 1),
  (1063, 1),
  (1064, 1),
  (1065, 1),
  (173, 1),
  (176, 1),
  (30, 1),
  (55, 1),
  (188, 1),
  (573, 1),
  (1059, 1),
  (838, 1),
  (1057, 1),
  (590, 1),
  (207, 1),
  (720, 1),
  (979, 1),
  (340, 1),
  (932, 1),
  (1060, 1),
  (362, 1),
  (379, 1),
  (255, 1)],
 [(4, 1),
  (264, 1),
  (13, 1),
  (788, 1),
  (48, 1),
  (932, 1),
  (1066, 1),
  (1067, 1),
  (1068, 1),
  (1069, 1),
  (1070, 1),
  (1071, 1),
  (1072, 1),
  (1073, 1),
  (1074, 1),
  (567, 1),
  (55, 1),
  (465, 1),
  (340, 1),
  (219, 1),
  (739, 1),
  (101, 1),
  (487, 1),
  (635, 1)],
 [(1, 1),
  (1058, 1),
  (673, 1),
  (73, 1),
  (1036, 1),
  (1075, 1),
  (1076, 1),
  (1077, 1),
  (1078, 1),
  (1079, 1),
  (1080, 1),
  (1081, 1),
  (602, 1),
  (123, 1)],
 [(1, 1), (169, 1), (565, 1), (218, 1), (1083, 1), (1082, 1)],
 [(1, 1),
  (131, 1),
  (246, 1),
  (1072, 1),
  (720, 1),
  (182, 1),
  (183, 1),
  (1084, 1),
  (1085, 1),
  (1086, 1),
  (1087, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (10, 1),
  (529, 1),
  (23, 1),
  (29, 1),
  (709, 1),
  (176, 1),
  (36, 1),
  (173, 1),
  (48, 1),
  (50, 1),
  (1097, 1),
  (439, 1),
  (443, 1),
  (60, 1),
  (573, 1),
  (1087, 1),
  (1088, 1),
  (1089, 1),
  (1090, 1),
  (1091, 1),
  (1092, 1),
  (1093, 1),
  (1094, 1),
  (1095, 1),
  (1096, 1),
  (73, 1),
  (330, 1),
  (1099, 1),
  (1100, 1),
  (1101, 1),
  (1098, 1),
  (348, 1),
  (102, 1),
  (161, 1),
  (121, 1),
  (127, 1)],
 [(1, 1),
  (214, 1),
  (519, 1),
  (12, 1),
  (13, 1),
  (269, 1),
  (153, 1),
  (30, 1),
  (551, 1),
  (169, 1),
  (1076, 1),
  (56, 1),
  (58, 1),
  (1120, 1),
  (1123, 1),
  (73, 1),
  (1102, 1),
  (1103, 1),
  (1104, 1),
  (1105, 1),
  (1106, 1),
  (1107, 1),
  (1108, 1),
  (1109, 1),
  (1110, 1),
  (1111, 1),
  (1112, 1),
  (1113, 1),
  (1114, 1),
  (1115, 1),
  (1116, 1),
  (1117, 1),
  (1118, 1),
  (1119, 1),
  (480, 1),
  (1121, 1),
  (1122, 1),
  (483, 1),
  (754, 1),
  (628, 1),
  (122, 1),
  (125, 1),
  (767, 1)],
 [(1, 1),
  (2, 1),
  (13, 1),
  (34, 1),
  (932, 1),
  (37, 1),
  (176, 1),
  (435, 1),
  (1076, 1),
  (73, 1),
  (204, 1),
  (1124, 1),
  (1125, 1),
  (1126, 1),
  (1127, 1),
  (1128, 1),
  (1129, 1),
  (1130, 1),
  (1131, 1),
  (1132, 1),
  (1133, 1),
  (1134, 1),
  (1135, 1),
  (1136, 1),
  (119, 1)],
 [(1, 1),
  (4, 1),
  (778, 1),
  (13, 1),
  (151, 1),
  (24, 1),
  (34, 1),
  (48, 1),
  (561, 1),
  (1011, 1),
  (182, 1),
  (61, 1),
  (73, 1),
  (340, 1),
  (613, 1),
  (573, 1),
  (1137, 1),
  (1138, 1),
  (1139, 1),
  (1140, 1),
  (1141, 1),
  (1142, 1),
  (1143, 1),
  (890, 1),
  (123, 1)],
 [(1, 1),
  (635, 1),
  (4, 1),
  (262, 1),
  (264, 1),
  (10, 1),
  (13, 1),
  (14, 1),
  (788, 1),
  (151, 1),
  (38, 1),
  (424, 1),
  (48, 1),
  (50, 1),
  (54, 1),
  (60, 1),
  (573, 1),
  (449, 1),
  (214, 1),
  (608, 1),
  (737, 1),
  (1147, 1),
  (106, 1),
  (117, 1),
  (1144, 1),
  (1145, 1),
  (1146, 1),
  (123, 1),
  (1148, 1)],
 [(1152, 1),
  (1, 1),
  (1154, 1),
  (1155, 1),
  (4, 1),
  (1157, 1),
  (518, 1),
  (1153, 1),
  (648, 1),
  (1161, 1),
  (10, 1),
  (398, 1),
  (173, 1),
  (787, 1),
  (788, 1),
  (150, 1),
  (1156, 1),
  (1160, 1),
  (28, 1),
  (30, 1),
  (5, 1),
  (1158, 1),
  (808, 1),
  (169, 1),
  (1159, 1),
  (114, 1),
  (48, 1),
  (561, 1),
  (50, 1),
  (180, 1),
  (182, 1),
  (184, 1),
  (317, 1),
  (62, 1),
  (77, 1),
  (848, 1),
  (94, 1),
  (1001, 1),
  (234, 1),
  (754, 1),
  (759, 1),
  (121, 1),
  (1146, 1),
  (1149, 1),
  (1150, 1),
  (1151, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (262, 1),
  (519, 1),
  (1162, 1),
  (1163, 1),
  (1164, 1),
  (1165, 1),
  (1166, 1),
  (1167, 1),
  (670, 1),
  (293, 1),
  (553, 1),
  (557, 1),
  (73, 1),
  (77, 1),
  (464, 1),
  (721, 1),
  (93, 1),
  (228, 1),
  (876, 1),
  (1012, 1)],
 [(1, 1), (4, 1), (204, 1), (240, 1), (48, 1), (721, 1), (118, 1), (29, 1)],
 [(48, 1),
  (4, 1),
  (1, 1),
  (403, 1),
  (14, 1),
  (1168, 1),
  (1169, 1),
  (1170, 1),
  (1171, 1),
  (1172, 1),
  (1173, 1),
  (1174, 1),
  (670, 1),
  (860, 1),
  (125, 1),
  (94, 1),
  (383, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (773, 1),
  (1202, 1),
  (151, 1),
  (14, 1),
  (143, 1),
  (16, 1),
  (24, 1),
  (147, 1),
  (150, 1),
  (1175, 1),
  (1176, 1),
  (1177, 1),
  (1178, 1),
  (1179, 1),
  (1180, 1),
  (1181, 1),
  (1182, 1),
  (1183, 1),
  (1184, 1),
  (801, 1),
  (1186, 1),
  (1187, 1),
  (1188, 1),
  (1189, 1),
  (1190, 1),
  (1191, 1),
  (1192, 1),
  (1193, 1),
  (1194, 1),
  (1195, 1),
  (1196, 1),
  (1197, 1),
  (1198, 1),
  (1199, 1),
  (944, 1),
  (1201, 1),
  (306, 1),
  (499, 1),
  (1204, 1),
  (1205, 1),
  (1206, 1),
  (55, 1),
  (23, 1),
  (1203, 1),
  (60, 1),
  (573, 1),
  (672, 1),
  (1185, 1),
  (73, 1),
  (106, 1),
  (183, 1),
  (77, 1),
  (207, 1),
  (720, 1),
  (81, 1),
  (214, 1),
  (121, 1),
  (602, 1),
  (37, 1),
  (1207, 1),
  (1043, 1),
  (872, 1),
  (233, 1),
  (362, 1),
  (240, 1),
  (1011, 1),
  (116, 1),
  (117, 1),
  (170, 1),
  (1200, 1),
  (255, 1),
  (234, 1),
  (383, 1)],
 [(1, 1),
  (1154, 1),
  (1221, 1),
  (169, 1),
  (1202, 1),
  (1208, 1),
  (1209, 1),
  (1210, 1),
  (1211, 1),
  (1212, 1),
  (61, 1),
  (1214, 1),
  (1215, 1),
  (1216, 1),
  (1217, 1),
  (1218, 1),
  (1219, 1),
  (1220, 1),
  (709, 1),
  (73, 1),
  (222, 1),
  (1213, 1),
  (245, 1),
  (1016, 1)],
 [(1, 1),
  (2, 1),
  (228, 1),
  (1222, 1),
  (1223, 1),
  (808, 1),
  (73, 1),
  (45, 1),
  (968, 1),
  (602, 1),
  (1224, 1)],
 [(128, 1),
  (1, 1),
  (123, 1),
  (1225, 1),
  (1226, 1),
  (14, 1),
  (207, 1),
  (176, 1),
  (52, 1),
  (54, 1),
  (55, 1),
  (698, 1),
  (699, 1),
  (61, 1)],
 [(4, 1),
  (230, 1),
  (1231, 1),
  (10, 1),
  (1227, 1),
  (1228, 1),
  (77, 1),
  (1230, 1),
  (1229, 1),
  (1232, 1),
  (1233, 1),
  (114, 1),
  (1234, 1),
  (117, 1),
  (698, 1),
  (283, 1),
  (13, 1),
  (222, 1)],
 [(1, 1),
  (2, 1),
  (342, 1),
  (1235, 1),
  (264, 1),
  (140, 1),
  (173, 1),
  (241, 1),
  (50, 1),
  (1011, 1),
  (1236, 1),
  (118, 1),
  (151, 1),
  (24, 1)],
 [(1, 1),
  (2, 1),
  (262, 1),
  (7, 1),
  (10, 1),
  (13, 1),
  (142, 1),
  (527, 1),
  (1179, 1),
  (1180, 1),
  (283, 1),
  (169, 1),
  (50, 1),
  (180, 1),
  (60, 1),
  (61, 1),
  (77, 1),
  (1237, 1),
  (1238, 1),
  (1239, 1),
  (1240, 1),
  (1241, 1),
  (1242, 1),
  (1243, 1),
  (1244, 1),
  (1245, 1),
  (1246, 1),
  (1247, 1),
  (1248, 1),
  (1249, 1),
  (226, 1),
  (872, 1),
  (111, 1),
  (573, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (133, 1),
  (649, 1),
  (143, 1),
  (785, 1),
  (149, 1),
  (150, 1),
  (24, 1),
  (283, 1),
  (808, 1),
  (949, 1),
  (1206, 1),
  (185, 1),
  (182, 1),
  (976, 1),
  (100, 1),
  (1250, 1),
  (1251, 1),
  (1252, 1),
  (1253, 1),
  (1254, 1),
  (1255, 1),
  (1256, 1),
  (234, 1),
  (878, 1),
  (1010, 1),
  (1139, 1),
  (117, 1),
  (248, 1)],
 [(636, 1),
  (61, 1),
  (1259, 1),
  (1, 1),
  (1257, 1),
  (1258, 1),
  (107, 1),
  (1260, 1),
  (173, 1),
  (1262, 1),
  (13, 1),
  (1261, 1),
  (182, 1),
  (24, 1),
  (1180, 1),
  (1181, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (774, 1),
  (272, 1),
  (146, 1),
  (149, 1),
  (153, 1),
  (240, 1),
  (626, 1),
  (50, 1),
  (1077, 1),
  (182, 1),
  (187, 1),
  (573, 1),
  (328, 1),
  (1271, 1),
  (77, 1),
  (205, 1),
  (83, 1),
  (470, 1),
  (486, 1),
  (999, 1),
  (1001, 1),
  (231, 1),
  (110, 1),
  (1263, 1),
  (1264, 1),
  (1265, 1),
  (1266, 1),
  (1267, 1),
  (1268, 1),
  (1269, 1),
  (1270, 1),
  (759, 1),
  (1272, 1),
  (1273, 1),
  (126, 1)],
 [(1280, 1),
  (1, 1),
  (2, 1),
  (262, 1),
  (273, 1),
  (792, 1),
  (26, 1),
  (36, 1),
  (171, 1),
  (173, 1),
  (558, 1),
  (48, 1),
  (182, 1),
  (590, 1),
  (340, 1),
  (759, 1),
  (1274, 1),
  (1275, 1),
  (1276, 1),
  (1277, 1),
  (1278, 1),
  (1279, 1)],
 [(1, 1),
  (1282, 1),
  (993, 1),
  (100, 1),
  (1281, 1),
  (649, 1),
  (204, 1),
  (2, 1),
  (752, 1),
  (50, 1),
  (3, 1),
  (949, 1),
  (118, 1),
  (280, 1),
  (443, 1)],
 [(512, 1),
  (1, 1),
  (2, 1),
  (1283, 1),
  (1284, 1),
  (1285, 1),
  (1286, 1),
  (1287, 1),
  (1288, 1),
  (1289, 1),
  (1290, 1),
  (1291, 1),
  (1292, 1),
  (13, 1),
  (1294, 1),
  (1295, 1),
  (1296, 1),
  (1297, 1),
  (1298, 1),
  (1299, 1),
  (1300, 1),
  (1301, 1),
  (1302, 1),
  (1303, 1),
  (1304, 1),
  (1305, 1),
  (26, 1),
  (335, 1),
  (1308, 1),
  (1306, 1),
  (1310, 1),
  (1307, 1),
  (932, 1),
  (39, 1),
  (1152, 1),
  (455, 1),
  (151, 1),
  (1309, 1),
  (48, 1),
  (50, 1),
  (128, 1),
  (1206, 1),
  (73, 1),
  (698, 1),
  (187, 1),
  (316, 1),
  (573, 1),
  (319, 1),
  (522, 1),
  (197, 1),
  (967, 1),
  (1097, 1),
  (330, 1),
  (78, 1),
  (1293, 1),
  (22, 1),
  (722, 1),
  (347, 1),
  (557, 1),
  (94, 1),
  (479, 1),
  (480, 1),
  (100, 1),
  (103, 1),
  (107, 1),
  (61, 1),
  (888, 1),
  (380, 1),
  (1277, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (262, 1),
  (903, 1),
  (1324, 1),
  (13, 1),
  (14, 1),
  (23, 1),
  (30, 1),
  (1311, 1),
  (1312, 1),
  (1313, 1),
  (1314, 1),
  (1315, 1),
  (1316, 1),
  (1317, 1),
  (1318, 1),
  (1319, 1),
  (1320, 1),
  (1321, 1),
  (1322, 1),
  (1323, 1),
  (172, 1),
  (1325, 1),
  (1326, 1),
  (48, 1),
  (1204, 1),
  (182, 1),
  (573, 1),
  (207, 1),
  (120, 1),
  (347, 1),
  (94, 1),
  (37, 1),
  (123, 1),
  (486, 1),
  (239, 1),
  (754, 1),
  (376, 1),
  (1275, 1)],
 [(896, 1),
  (1, 1),
  (2, 1),
  (262, 1),
  (1330, 1),
  (13, 1),
  (529, 1),
  (788, 1),
  (149, 1),
  (25, 1),
  (30, 1),
  (48, 1),
  (808, 1),
  (298, 1),
  (299, 1),
  (1324, 1),
  (173, 1),
  (1327, 1),
  (1328, 1),
  (1329, 1),
  (50, 1),
  (1331, 1),
  (1332, 1),
  (1333, 1),
  (182, 1),
  (55, 1),
  (1336, 1),
  (1337, 1),
  (1338, 1),
  (1339, 1),
  (1089, 1),
  (267, 1),
  (1334, 1),
  (73, 1),
  (1335, 1),
  (205, 1),
  (206, 1),
  (720, 1),
  (862, 1),
  (100, 1),
  (103, 1),
  (123, 1),
  (21, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (645, 1),
  (519, 1),
  (1163, 1),
  (13, 1),
  (14, 1),
  (16, 1),
  (1340, 1),
  (791, 1),
  (153, 1),
  (34, 1),
  (551, 1),
  (263, 1),
  (114, 1),
  (52, 1),
  (694, 1),
  (55, 1),
  (313, 1),
  (151, 1),
  (317, 1),
  (1342, 1),
  (1343, 1),
  (1344, 1),
  (961, 1),
  (1346, 1),
  (1347, 1),
  (1348, 1),
  (72, 1),
  (1097, 1),
  (74, 1),
  (695, 1),
  (1345, 1),
  (463, 1),
  (1106, 1),
  (601, 1),
  (1119, 1),
  (873, 1),
  (1341, 1),
  (754, 1),
  (628, 1),
  (888, 1),
  (121, 1),
  (122, 1),
  (125, 1),
  (1045, 1)],
 [(1, 1),
  (4, 1),
  (10, 1),
  (631, 1),
  (269, 1),
  (14, 1),
  (15, 1),
  (272, 1),
  (1219, 1),
  (1300, 1),
  (73, 1),
  (1356, 1),
  (26, 1),
  (457, 1),
  (1115, 1),
  (169, 1),
  (1352, 1),
  (50, 1),
  (435, 1),
  (20, 1),
  (94, 1),
  (1206, 1),
  (1353, 1),
  (1338, 1),
  (315, 1),
  (573, 1),
  (62, 1),
  (203, 1),
  (1349, 1),
  (1350, 1),
  (1351, 1),
  (968, 1),
  (841, 1),
  (74, 1),
  (1355, 1),
  (972, 1),
  (1357, 1),
  (1358, 1),
  (13, 1),
  (338, 1),
  (87, 1),
  (347, 1),
  (1354, 1),
  (222, 1),
  (869, 1),
  (877, 1),
  (112, 1),
  (1359, 1),
  (118, 1),
  (119, 1),
  (55, 1)],
 [(128, 1),
  (1, 1),
  (4, 1),
  (901, 1),
  (10, 1),
  (13, 1),
  (403, 1),
  (1045, 1),
  (23, 1),
  (1375, 1),
  (29, 1),
  (30, 1),
  (928, 1),
  (295, 1),
  (936, 1),
  (925, 1),
  (50, 1),
  (180, 1),
  (55, 1),
  (315, 1),
  (316, 1),
  (1379, 1),
  (1356, 1),
  (1360, 1),
  (1361, 1),
  (1362, 1),
  (1363, 1),
  (1364, 1),
  (1365, 1),
  (1366, 1),
  (1367, 1),
  (1368, 1),
  (1369, 1),
  (1370, 1),
  (1371, 1),
  (1372, 1),
  (1373, 1),
  (1374, 1),
  (1119, 1),
  (1376, 1),
  (1377, 1),
  (1378, 1),
  (99, 1),
  (365, 1),
  (296, 1),
  (1147, 1),
  (661, 1)],
 [(1088, 1),
  (1, 1),
  (187, 1),
  (1380, 1),
  (1381, 1),
  (1382, 1),
  (39, 1),
  (1383, 1),
  (13, 1),
  (302, 1),
  (573, 1),
  (48, 1),
  (50, 1),
  (77, 1),
  (246, 1),
  (151, 1),
  (315, 1),
  (90, 1),
  (123, 1),
  (26, 1),
  (670, 1)],
 [(1, 1),
  (2, 1),
  (1275, 1),
  (1287, 1),
  (1384, 1),
  (1385, 1),
  (103, 1),
  (13, 1),
  (77, 1),
  (527, 1),
  (48, 1),
  (178, 1),
  (182, 1),
  (151, 1),
  (440, 1),
  (153, 1),
  (26, 1),
  (123, 1),
  (30, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (273, 1),
  (146, 1),
  (622, 1),
  (150, 1),
  (1314, 1),
  (35, 1),
  (1318, 1),
  (1321, 1),
  (48, 1),
  (182, 1),
  (1396, 1),
  (1338, 1),
  (315, 1),
  (316, 1),
  (573, 1),
  (1228, 1),
  (207, 1),
  (83, 1),
  (470, 1),
  (602, 1),
  (101, 1),
  (1386, 1),
  (1387, 1),
  (1388, 1),
  (1389, 1),
  (1390, 1),
  (1391, 1),
  (1392, 1),
  (1393, 1),
  (1394, 1),
  (1395, 1),
  (244, 1),
  (1397, 1),
  (1398, 1),
  (1399, 1),
  (1400, 1),
  (1401, 1),
  (1402, 1)],
 [(4, 1),
  (198, 1),
  (73, 1),
  (1362, 1),
  (530, 1),
  (759, 1),
  (315, 1),
  (1343, 1)],
 [(1408, 1),
  (1, 1),
  (2, 1),
  (1411, 1),
  (4, 1),
  (1413, 1),
  (262, 1),
  (1409, 1),
  (1416, 1),
  (1417, 1),
  (1418, 1),
  (267, 1),
  (13, 1),
  (14, 1),
  (16, 1),
  (786, 1),
  (787, 1),
  (21, 1),
  (150, 1),
  (408, 1),
  (1412, 1),
  (26, 1),
  (1309, 1),
  (30, 1),
  (490, 1),
  (35, 1),
  (36, 1),
  (1414, 1),
  (294, 1),
  (169, 1),
  (1415, 1),
  (48, 1),
  (50, 1),
  (567, 1),
  (1338, 1),
  (61, 1),
  (447, 1),
  (449, 1),
  (197, 1),
  (74, 1),
  (55, 1),
  (354, 1),
  (207, 1),
  (99, 1),
  (214, 1),
  (1207, 1),
  (610, 1),
  (635, 1),
  (618, 1),
  (1410, 1),
  (240, 1),
  (370, 1),
  (126, 1),
  (631, 1),
  (1403, 1),
  (1404, 1),
  (1405, 1),
  (1406, 1),
  (1407, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (515, 1),
  (388, 1),
  (1445, 1),
  (1419, 1),
  (1420, 1),
  (1421, 1),
  (1422, 1),
  (1423, 1),
  (1424, 1),
  (1425, 1),
  (1426, 1),
  (1427, 1),
  (1428, 1),
  (1429, 1),
  (1430, 1),
  (1431, 1),
  (1432, 1),
  (4, 1),
  (1434, 1),
  (1435, 1),
  (1436, 1),
  (1437, 1),
  (1438, 1),
  (1439, 1),
  (1433, 1),
  (1441, 1),
  (1442, 1),
  (1443, 1),
  (1444, 1),
  (677, 1),
  (146, 1),
  (1447, 1),
  (424, 1),
  (299, 1),
  (173, 1),
  (52, 1),
  (183, 1),
  (23, 1),
  (95, 1),
  (1343, 1),
  (321, 1),
  (267, 1),
  (196, 1),
  (25, 1),
  (140, 1),
  (77, 1),
  (13, 1),
  (1016, 1),
  (83, 1),
  (14, 1),
  (24, 1),
  (601, 1),
  (932, 1),
  (605, 1),
  (1119, 1),
  (16, 1),
  (443, 1),
  (1446, 1),
  (273, 1),
  (616, 1),
  (1001, 1),
  (618, 1),
  (877, 1),
  (1264, 1),
  (114, 1),
  (1440, 1),
  (628, 1),
  (246, 1),
  (1400, 1),
  (1386, 1)],
 [(4, 1),
  (133, 1),
  (142, 1),
  (432, 1),
  (1448, 1),
  (1449, 1),
  (1450, 1),
  (1451, 1),
  (1452, 1),
  (1453, 1),
  (1454, 1),
  (176, 1),
  (180, 1),
  (315, 1),
  (1089, 1),
  (197, 1),
  (457, 1),
  (77, 1),
  (461, 1),
  (212, 1),
  (187, 1),
  (106, 1),
  (1267, 1),
  (1400, 1)],
 [(1, 1),
  (83, 1),
  (100, 1),
  (1321, 1),
  (1455, 1),
  (976, 1),
  (529, 1),
  (530, 1),
  (1456, 1),
  (340, 1),
  (182, 1),
  (1193, 1)],
 [(512, 1),
  (2, 1),
  (4, 1),
  (573, 1),
  (522, 1),
  (151, 1),
  (13, 1),
  (1298, 1),
  (1471, 1),
  (1174, 1),
  (670, 1),
  (24, 1),
  (30, 1),
  (1477, 1),
  (160, 1),
  (882, 1),
  (1328, 1),
  (1457, 1),
  (1458, 1),
  (1459, 1),
  (1460, 1),
  (1461, 1),
  (1462, 1),
  (1463, 1),
  (1464, 1),
  (1465, 1),
  (1466, 1),
  (59, 1),
  (1468, 1),
  (61, 1),
  (1470, 1),
  (821, 1),
  (1472, 1),
  (1473, 1),
  (1474, 1),
  (1475, 1),
  (1476, 1),
  (758, 1),
  (54, 1),
  (55, 1),
  (77, 1),
  (463, 1),
  (1362, 1),
  (341, 1),
  (1367, 1),
  (1359, 1),
  (93, 1),
  (1467, 1),
  (1254, 1),
  (616, 1),
  (362, 1),
  (1106, 1),
  (1469, 1),
  (754, 1),
  (116, 1),
  (246, 1),
  (119, 1),
  (234, 1),
  (319, 1),
  (1149, 1)],
 [(4, 1),
  (101, 1),
  (1478, 1),
  (103, 1),
  (140, 1),
  (77, 1),
  (302, 1),
  (125, 1),
  (16, 1),
  (562, 1),
  (55, 1),
  (24, 1),
  (1275, 1),
  (317, 1),
  (30, 1)],
 [(1, 1),
  (264, 1),
  (649, 1),
  (10, 1),
  (12, 1),
  (14, 1),
  (16, 1),
  (26, 1),
  (670, 1),
  (1447, 1),
  (50, 1),
  (949, 1),
  (182, 1),
  (1079, 1),
  (187, 1),
  (581, 1),
  (1479, 1),
  (1480, 1),
  (1481, 1),
  (1482, 1),
  (461, 1),
  (618, 1),
  (106, 1),
  (234, 1)],
 [(480, 1),
  (1, 1),
  (1282, 1),
  (69, 1),
  (73, 1),
  (1483, 1),
  (1484, 1),
  (146, 1),
  (1198, 1),
  (240, 1),
  (50, 1),
  (435, 1),
  (55, 1),
  (1314, 1),
  (602, 1),
  (187, 1),
  (30, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (12, 1),
  (16, 1),
  (273, 1),
  (146, 1),
  (791, 1),
  (281, 1),
  (538, 1),
  (282, 1),
  (30, 1),
  (932, 1),
  (294, 1),
  (39, 1),
  (169, 1),
  (170, 1),
  (1455, 1),
  (48, 1),
  (949, 1),
  (182, 1),
  (824, 1),
  (185, 1),
  (187, 1),
  (54, 1),
  (74, 1),
  (1485, 1),
  (1486, 1),
  (1487, 1),
  (1488, 1),
  (214, 1),
  (347, 1),
  (100, 1),
  (104, 1),
  (1400, 1),
  (1206, 1)],
 [(1, 1),
  (996, 1),
  (150, 1),
  (1130, 1),
  (557, 1),
  (1489, 1),
  (1490, 1),
  (1491, 1),
  (822, 1),
  (153, 1),
  (61, 1),
  (30, 1)],
 [(896, 1),
  (1, 1),
  (10, 1),
  (150, 1),
  (24, 1),
  (282, 1),
  (1051, 1),
  (112, 1),
  (50, 1),
  (128, 1),
  (54, 1),
  (55, 1),
  (69, 1),
  (327, 1),
  (1492, 1),
  (1493, 1),
  (1494, 1),
  (215, 1),
  (216, 1),
  (479, 1),
  (99, 1),
  (240, 1)],
 [(4, 1),
  (709, 1),
  (1130, 1),
  (780, 1),
  (366, 1),
  (180, 1),
  (949, 1),
  (150, 1),
  (1495, 1),
  (1496, 1),
  (1497, 1),
  (1498, 1),
  (30, 1),
  (383, 1)],
 [(128, 1),
  (1281, 1),
  (2, 1),
  (1515, 1),
  (4, 1),
  (1, 1),
  (13, 1),
  (1517, 1),
  (149, 1),
  (23, 1),
  (1051, 1),
  (30, 1),
  (1514, 1),
  (283, 1),
  (808, 1),
  (1193, 1),
  (178, 1),
  (48, 1),
  (50, 1),
  (691, 1),
  (180, 1),
  (185, 1),
  (1338, 1),
  (571, 1),
  (60, 1),
  (573, 1),
  (830, 1),
  (207, 1),
  (850, 1),
  (725, 1),
  (463, 1),
  (601, 1),
  (602, 1),
  (1499, 1),
  (1500, 1),
  (1501, 1),
  (1502, 1),
  (1503, 1),
  (1504, 1),
  (1505, 1),
  (1506, 1),
  (1507, 1),
  (1508, 1),
  (1509, 1),
  (1510, 1),
  (743, 1),
  (1512, 1),
  (1513, 1),
  (106, 1),
  (1511, 1),
  (1516, 1),
  (1362, 1),
  (1518, 1),
  (1519, 1),
  (499, 1),
  (1342, 1),
  (1147, 1),
  (234, 1)],
 [(1536, 1),
  (1537, 1),
  (1538, 1),
  (131, 1),
  (1540, 1),
  (1541, 1),
  (1542, 1),
  (1543, 1),
  (1544, 1),
  (1545, 1),
  (1546, 1),
  (1547, 1),
  (1548, 1),
  (1549, 1),
  (14, 1),
  (173, 1),
  (1552, 1),
  (1553, 1),
  (1554, 1),
  (1539, 1),
  (1556, 1),
  (149, 1),
  (4, 1),
  (282, 1),
  (283, 1),
  (52, 1),
  (543, 1),
  (550, 1),
  (1521, 1),
  (296, 1),
  (682, 1),
  (557, 1),
  (1555, 1),
  (243, 1),
  (180, 1),
  (350, 1),
  (182, 1),
  (440, 1),
  (884, 1),
  (61, 1),
  (822, 1),
  (197, 1),
  (198, 1),
  (1352, 1),
  (1353, 1),
  (758, 1),
  (77, 1),
  (808, 1),
  (1550, 1),
  (602, 1),
  (1551, 1),
  (754, 1),
  (101, 1),
  (613, 1),
  (486, 1),
  (103, 1),
  (807, 1),
  (1134, 1),
  (1520, 1),
  (1393, 1),
  (1522, 1),
  (1523, 1),
  (1524, 1),
  (1525, 1),
  (1526, 1),
  (1527, 1),
  (1528, 1),
  (1529, 1),
  (1530, 1),
  (1531, 1),
  (1532, 1),
  (1533, 1),
  (1534, 1),
  (1535, 1)],
 [(1, 1),
  (4, 1),
  (10, 1),
  (13, 1),
  (1552, 1),
  (1557, 1),
  (1558, 1),
  (1559, 1),
  (1560, 1),
  (1561, 1),
  (1434, 1),
  (1563, 1),
  (1564, 1),
  (1562, 1),
  (30, 1),
  (1567, 1),
  (1568, 1),
  (1569, 1),
  (1570, 1),
  (1187, 1),
  (1193, 1),
  (1565, 1),
  (307, 1),
  (1566, 1),
  (182, 1),
  (1206, 1),
  (73, 1),
  (459, 1),
  (80, 1),
  (210, 1),
  (1571, 1),
  (484, 1),
  (1511, 1),
  (1106, 1),
  (117, 1),
  (21, 1)],
 [(1, 1),
  (2, 1),
  (1572, 1),
  (968, 1),
  (74, 1),
  (55, 1),
  (690, 1),
  (52, 1),
  (1367, 1),
  (932, 1),
  (123, 1),
  (126, 1),
  (447, 1)],
 [(1, 1),
  (133, 1),
  (262, 1),
  (1281, 1),
  (13, 1),
  (45, 1),
  (1586, 1),
  (269, 1),
  (815, 1),
  (1564, 1),
  (34, 1),
  (932, 1),
  (1573, 1),
  (1574, 1),
  (1575, 1),
  (1576, 1),
  (169, 1),
  (1578, 1),
  (1579, 1),
  (1580, 1),
  (1581, 1),
  (1582, 1),
  (1583, 1),
  (1584, 1),
  (1585, 1),
  (562, 1),
  (691, 1),
  (1588, 1),
  (1589, 1),
  (1590, 1),
  (1591, 1),
  (1592, 1),
  (1593, 1),
  (1594, 1),
  (73, 1),
  (759, 1),
  (333, 1),
  (335, 1),
  (1409, 1),
  (1587, 1),
  (342, 1),
  (602, 1),
  (935, 1),
  (240, 1),
  (499, 1),
  (1577, 1)],
 [(1599, 1),
  (515, 1),
  (869, 1),
  (15, 1),
  (106, 1),
  (1005, 1),
  (173, 1),
  (48, 1),
  (1298, 1),
  (30, 1),
  (117, 1),
  (54, 1),
  (151, 1),
  (56, 1),
  (601, 1),
  (1595, 1),
  (1596, 1),
  (1597, 1),
  (1598, 1),
  (149, 1)],
 [(1600, 1),
  (1, 1),
  (4, 1),
  (1601, 1),
  (146, 1),
  (77, 1),
  (497, 1),
  (50, 1),
  (182, 1),
  (24, 1),
  (93, 1)],
 [(1, 1),
  (939, 1),
  (1281, 1),
  (290, 1),
  (13, 1),
  (143, 1),
  (150, 1),
  (151, 1),
  (410, 1),
  (156, 1),
  (1441, 1),
  (34, 1),
  (603, 1),
  (1065, 1),
  (1607, 1),
  (303, 1),
  (1609, 1),
  (60, 1),
  (446, 1),
  (1602, 1),
  (1603, 1),
  (1604, 1),
  (1605, 1),
  (1606, 1),
  (455, 1),
  (1608, 1),
  (1097, 1),
  (1610, 1),
  (1611, 1),
  (1612, 1),
  (1613, 1),
  (207, 1),
  (1359, 1),
  (848, 1),
  (977, 1),
  (725, 1),
  (214, 1),
  (1115, 1),
  (1120, 1),
  (482, 1),
  (622, 1),
  (1393, 1),
  (120, 1),
  (762, 1),
  (252, 1)],
 [(1, 1), (33, 1)],
 [(1344, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (497, 1),
  (73, 1),
  (327, 1),
  (236, 1),
  (77, 1),
  (1614, 1),
  (143, 1),
  (1616, 1),
  (1617, 1),
  (50, 1),
  (94, 1),
  (214, 1),
  (100, 1),
  (1615, 1),
  (30, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (1622, 1),
  (262, 1),
  (13, 1),
  (529, 1),
  (30, 1),
  (293, 1),
  (169, 1),
  (561, 1),
  (1206, 1),
  (440, 1),
  (578, 1),
  (182, 1),
  (207, 1),
  (1618, 1),
  (1619, 1),
  (1620, 1),
  (1621, 1),
  (342, 1),
  (1499, 1),
  (867, 1),
  (1127, 1),
  (681, 1),
  (492, 1),
  (1011, 1),
  (1399, 1),
  (380, 1),
  (127, 1)],
 [(1, 1),
  (4, 1),
  (517, 1),
  (103, 1),
  (73, 1),
  (299, 1),
  (492, 1),
  (77, 1),
  (50, 1),
  (147, 1),
  (180, 1),
  (236, 1),
  (214, 1),
  (1623, 1),
  (1624, 1),
  (1625, 1),
  (1626, 1),
  (1627, 1),
  (1628, 1),
  (1011, 1)],
 [(264, 1), (1, 1), (1011, 1), (1629, 1)],
 [(1, 1), (951, 1), (144, 1), (1630, 1), (182, 1), (119, 1), (93, 1), (30, 1)],
 [(1, 1),
  (2, 1),
  (773, 1),
  (518, 1),
  (557, 1),
  (562, 1),
  (1495, 1),
  (440, 1),
  (26, 1),
  (383, 1)],
 [(896, 1),
  (1, 1),
  (2, 1),
  (3, 1),
  (4, 1),
  (903, 1),
  (13, 1),
  (15, 1),
  (1298, 1),
  (30, 1),
  (33, 1),
  (1499, 1),
  (809, 1),
  (54, 1),
  (61, 1),
  (330, 1),
  (720, 1),
  (1620, 1),
  (143, 1),
  (1631, 1),
  (1632, 1),
  (1633, 1),
  (1634, 1),
  (1635, 1),
  (1636, 1),
  (1637, 1),
  (1638, 1),
  (1639, 1),
  (1640, 1),
  (1641, 1),
  (1642, 1),
  (1643, 1),
  (236, 1),
  (1009, 1),
  (1011, 1),
  (117, 1),
  (631, 1),
  (123, 1)],
 [(1, 1),
  (867, 1),
  (262, 1),
  (1644, 1),
  (584, 1),
  (73, 1),
  (10, 1),
  (551, 1),
  (972, 1),
  (786, 1),
  (1645, 1),
  (968, 1),
  (1362, 1),
  (1011, 1),
  (264, 1),
  (117, 1),
  (681, 1),
  (306, 1),
  (30, 1)],
 [(1, 1),
  (4, 1),
  (841, 1),
  (939, 1),
  (397, 1),
  (1646, 1),
  (1647, 1),
  (945, 1),
  (446, 1),
  (182, 1),
  (94, 1)],
 [(128, 1),
  (1, 1),
  (4, 1),
  (182, 1),
  (908, 1),
  (10, 1),
  (13, 1),
  (1650, 1),
  (1647, 1),
  (143, 1),
  (1648, 1),
  (1649, 1),
  (50, 1),
  (1620, 1),
  (150, 1),
  (15, 1),
  (446, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (13, 1),
  (143, 1),
  (147, 1),
  (24, 1),
  (30, 1),
  (33, 1),
  (675, 1),
  (807, 1),
  (681, 1),
  (811, 1),
  (1011, 1),
  (822, 1),
  (567, 1),
  (446, 1),
  (631, 1),
  (463, 1),
  (1490, 1),
  (92, 1),
  (867, 1),
  (869, 1),
  (236, 1),
  (466, 1),
  (239, 1),
  (114, 1),
  (1651, 1),
  (1652, 1),
  (1653, 1),
  (1654, 1),
  (1655, 1),
  (1656, 1),
  (1657, 1),
  (1658, 1),
  (1659, 1)],
 [(1, 1),
  (323, 1),
  (4, 1),
  (37, 1),
  (147, 1),
  (240, 1),
  (783, 1),
  (16, 1),
  (946, 1),
  (499, 1),
  (340, 1),
  (1662, 1),
  (182, 1),
  (1660, 1),
  (1661, 1),
  (286, 1),
  (1663, 1)],
 [(1664, 1),
  (1, 1),
  (4, 1),
  (262, 1),
  (103, 1),
  (141, 1),
  (143, 1),
  (48, 1),
  (147, 1),
  (1044, 1),
  (117, 1),
  (54, 1),
  (24, 1),
  (100, 1),
  (1665, 1),
  (1469, 1),
  (447, 1)],
 [(1, 1),
  (1666, 1),
  (1667, 1),
  (1668, 1),
  (5, 1),
  (1670, 1),
  (1671, 1),
  (2, 1),
  (1044, 1),
  (150, 1),
  (4, 1),
  (26, 1),
  (1669, 1),
  (37, 1),
  (943, 1),
  (561, 1),
  (183, 1),
  (187, 1),
  (61, 1),
  (197, 1),
  (73, 1),
  (77, 1),
  (78, 1),
  (1615, 1),
  (90, 1),
  (1503, 1),
  (613, 1),
  (239, 1),
  (120, 1),
  (509, 1)],
 [(1, 1), (2, 1)],
 [(1345, 1),
  (4, 1),
  (1672, 1),
  (1673, 1),
  (1421, 1),
  (302, 1),
  (461, 1),
  (968, 1),
  (146, 1),
  (123, 1),
  (573, 1)],
 [(1, 1),
  (2, 1),
  (299, 1),
  (1544, 1),
  (1674, 1),
  (1675, 1),
  (1676, 1),
  (1677, 1),
  (1678, 1),
  (1679, 1),
  (1680, 1),
  (1681, 1),
  (1682, 1),
  (1683, 1),
  (1684, 1),
  (1045, 1),
  (1686, 1),
  (1687, 1),
  (920, 1),
  (34, 1),
  (939, 1),
  (173, 1),
  (10, 1),
  (52, 1),
  (94, 1),
  (694, 1),
  (183, 1),
  (1340, 1),
  (1469, 1),
  (1345, 1),
  (1225, 1),
  (715, 1),
  (55, 1),
  (1119, 1),
  (480, 1),
  (484, 1),
  (999, 1),
  (234, 1),
  (1393, 1),
  (114, 1),
  (244, 1),
  (754, 1),
  (123, 1),
  (1685, 1)],
 [(1, 1),
  (4, 1),
  (1110, 1),
  (390, 1),
  (140, 1),
  (397, 1),
  (16, 1),
  (26, 1),
  (147, 1),
  (269, 1),
  (345, 1),
  (1688, 1),
  (1689, 1),
  (1690, 1),
  (1691, 1),
  (1692, 1),
  (1693, 1),
  (30, 1),
  (1695, 1),
  (1696, 1),
  (1697, 1),
  (1698, 1),
  (1699, 1),
  (36, 1),
  (37, 1),
  (1702, 1),
  (1393, 1),
  (1704, 1),
  (169, 1),
  (1706, 1),
  (1707, 1),
  (1708, 1),
  (1709, 1),
  (1710, 1),
  (1309, 1),
  (176, 1),
  (949, 1),
  (182, 1),
  (183, 1),
  (185, 1),
  (1467, 1),
  (1340, 1),
  (13, 1),
  (1694, 1),
  (319, 1),
  (449, 1),
  (262, 1),
  (1476, 1),
  (197, 1),
  (971, 1),
  (207, 1),
  (80, 1),
  (1106, 1),
  (340, 1),
  (342, 1),
  (57, 1),
  (1700, 1),
  (1701, 1),
  (272, 1),
  (101, 1),
  (119, 1),
  (106, 1),
  (1703, 1),
  (753, 1),
  (114, 1),
  (628, 1),
  (958, 1),
  (1705, 1),
  (1403, 1)],
 [(4, 1),
  (246, 1),
  (557, 1),
  (1714, 1),
  (1715, 1),
  (140, 1),
  (77, 1),
  (1711, 1),
  (1712, 1),
  (1713, 1),
  (499, 1),
  (787, 1),
  (589, 1),
  (317, 1),
  (150, 1),
  (55, 1),
  (283, 1),
  (764, 1),
  (29, 1),
  (30, 1),
  (565, 1)],
 [(1, 1),
  (100, 1),
  (518, 1),
  (136, 1),
  (649, 1),
  (976, 1),
  (972, 1),
  (13, 1),
  (48, 1),
  (1716, 1),
  (1397, 1),
  (4, 1),
  (153, 1),
  (121, 1),
  (126, 1)],
 [(128, 1),
  (1, 1),
  (4, 1),
  (182, 1),
  (1222, 1),
  (808, 1),
  (151, 1),
  (557, 1),
  (366, 1),
  (1718, 1),
  (80, 1),
  (497, 1),
  (50, 1),
  (1717, 1),
  (150, 1),
  (1719, 1),
  (1720, 1),
  (25, 1),
  (1407, 1)],
 [(896, 1),
  (1, 1),
  (2, 1),
  (649, 1),
  (143, 1),
  (16, 1),
  (1298, 1),
  (25, 1),
  (290, 1),
  (180, 1),
  (182, 1),
  (1721, 1),
  (1722, 1),
  (1723, 1),
  (1724, 1),
  (1725, 1),
  (1342, 1),
  (78, 1),
  (80, 1),
  (144, 1),
  (106, 1),
  (619, 1),
  (1516, 1),
  (1008, 1),
  (1726, 1)],
 [(1, 1),
  (262, 1),
  (264, 1),
  (1730, 1),
  (151, 1),
  (287, 1),
  (302, 1),
  (48, 1),
  (562, 1),
  (180, 1),
  (1737, 1),
  (60, 1),
  (830, 1),
  (1727, 1),
  (1728, 1),
  (1729, 1),
  (1346, 1),
  (1731, 1),
  (1732, 1),
  (1733, 1),
  (1734, 1),
  (1735, 1),
  (1736, 1),
  (73, 1),
  (492, 1),
  (753, 1),
  (245, 1),
  (123, 1),
  (764, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (774, 1),
  (140, 1),
  (13, 1),
  (150, 1),
  (294, 1),
  (1447, 1),
  (557, 1),
  (562, 1),
  (188, 1),
  (1471, 1),
  (326, 1),
  (1738, 1),
  (1739, 1),
  (1740, 1),
  (1741, 1),
  (78, 1),
  (93, 1),
  (234, 1),
  (755, 1),
  (759, 1)],
 [(1152, 1),
  (1, 1),
  (4, 1),
  (645, 1),
  (128, 1),
  (1544, 1),
  (1161, 1),
  (778, 1),
  (13, 1),
  (1298, 1),
  (788, 1),
  (23, 1),
  (156, 1),
  (30, 1),
  (773, 1),
  (672, 1),
  (673, 1),
  (1497, 1),
  (1443, 1),
  (134, 1),
  (936, 1),
  (681, 1),
  (93, 1),
  (435, 1),
  (719, 1),
  (565, 1),
  (182, 1),
  (695, 1),
  (443, 1),
  (1340, 1),
  (573, 1),
  (62, 1),
  (1677, 1),
  (1767, 1),
  (715, 1),
  (1733, 1),
  (1761, 1),
  (54, 1),
  (990, 1),
  (75, 1),
  (1762, 1),
  (1742, 1),
  (1743, 1),
  (1744, 1),
  (1745, 1),
  (1746, 1),
  (1747, 1),
  (1748, 1),
  (1749, 1),
  (1750, 1),
  (1751, 1),
  (1752, 1),
  (1753, 1),
  (1754, 1),
  (1755, 1),
  (1756, 1),
  (1757, 1),
  (1758, 1),
  (1759, 1),
  (1760, 1),
  (737, 1),
  (1122, 1),
  (1763, 1),
  (1764, 1),
  (1765, 1),
  (1766, 1),
  (465, 1),
  (619, 1),
  (61, 1),
  (753, 1),
  (499, 1),
  (245, 1),
  (759, 1),
  (255, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (491, 1),
  (4, 1),
  (490, 1),
  (449, 1),
  (1676, 1),
  (14, 1),
  (150, 1),
  (408, 1),
  (0, 1),
  (31, 1),
  (34, 1),
  (165, 1),
  (294, 1),
  (173, 1),
  (558, 1),
  (176, 1),
  (55, 1),
  (61, 1),
  (62, 1),
  (961, 1),
  (1220, 1),
  (73, 1),
  (887, 1),
  (204, 1),
  (1746, 1),
  (602, 1),
  (99, 1),
  (38, 1),
  (487, 1),
  (1768, 1),
  (1769, 1),
  (234, 1),
  (1771, 1),
  (1772, 1),
  (1773, 1),
  (1774, 1),
  (1008, 1),
  (1010, 1),
  (244, 1),
  (759, 1),
  (1770, 1)],
 [(1410, 1),
  (4, 1),
  (1159, 1),
  (14, 1),
  (173, 1),
  (280, 1),
  (153, 1),
  (416, 1),
  (176, 1),
  (37, 1),
  (1777, 1),
  (1778, 1),
  (48, 1),
  (178, 1),
  (949, 1),
  (695, 1),
  (565, 1),
  (321, 1),
  (74, 1),
  (972, 1),
  (1784, 1),
  (1746, 1),
  (739, 1),
  (1499, 1),
  (1761, 1),
  (1787, 1),
  (465, 1),
  (234, 1),
  (364, 1),
  (1775, 1),
  (1776, 1),
  (753, 1),
  (754, 1),
  (1779, 1),
  (1780, 1),
  (1781, 1),
  (1782, 1),
  (1783, 1),
  (248, 1),
  (1785, 1),
  (1786, 1),
  (1531, 1),
  (1788, 1),
  (1789, 1),
  (1790, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (517, 1),
  (13, 1),
  (14, 1),
  (16, 1),
  (1559, 1),
  (25, 1),
  (1711, 1),
  (30, 1),
  (261, 1),
  (36, 1),
  (1288, 1),
  (50, 1),
  (51, 1),
  (52, 1),
  (55, 1),
  (56, 1),
  (57, 1),
  (58, 1),
  (60, 1),
  (61, 1),
  (275, 1),
  (73, 1),
  (74, 1),
  (83, 1),
  (1110, 1),
  (94, 1),
  (616, 1),
  (1132, 1),
  (1128, 1),
  (627, 1),
  (631, 1),
  (123, 1),
  (126, 1),
  (128, 1),
  (635, 1),
  (645, 1),
  (1158, 1),
  (143, 1),
  (144, 1),
  (676, 1),
  (169, 1),
  (173, 1),
  (1309, 1),
  (180, 1),
  (695, 1),
  (185, 1),
  (196, 1),
  (197, 1),
  (198, 1),
  (1825, 1),
  (1224, 1),
  (290, 1),
  (214, 1),
  (739, 1),
  (1831, 1),
  (753, 1),
  (756, 1),
  (1269, 1),
  (1272, 1),
  (762, 1),
  (1789, 1),
  (767, 1),
  (1792, 1),
  (1793, 1),
  (1794, 1),
  (1795, 1),
  (1796, 1),
  (1797, 1),
  (1798, 1),
  (1799, 1),
  (1800, 1),
  (1801, 1),
  (1802, 1),
  (1803, 1),
  (1804, 1),
  (1805, 1),
  (1806, 1),
  (1807, 1),
  (1808, 1),
  (1809, 1),
  (1810, 1),
  (1811, 1),
  (1812, 1),
  (1813, 1),
  (1814, 1),
  (1815, 1),
  (1816, 1),
  (1817, 1),
  (1818, 1),
  (1819, 1),
  (1820, 1),
  (1821, 1),
  (1822, 1),
  (1823, 1),
  (1824, 1),
  (801, 1),
  (1826, 1),
  (1827, 1),
  (1828, 1),
  (1829, 1),
  (1830, 1),
  (807, 1),
  (1832, 1),
  (1833, 1),
  (1834, 1),
  (1835, 1),
  (1836, 1),
  (1837, 1),
  (1838, 1),
  (1839, 1),
  (1840, 1),
  (1841, 1),
  (306, 1),
  (307, 1),
  (1076, 1),
  (317, 1),
  (1343, 1),
  (1345, 1),
  (330, 1),
  (313, 1),
  (1372, 1),
  (867, 1),
  (876, 1),
  (371, 1),
  (887, 1),
  (319, 1),
  (903, 1),
  (1434, 1),
  (1443, 1),
  (932, 1),
  (937, 1),
  (432, 1),
  (1458, 1),
  (949, 1),
  (967, 1),
  (1499, 1),
  (1500, 1),
  (478, 1),
  (991, 1),
  (480, 1),
  (486, 1),
  (1008, 1),
  (1791, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (264, 1),
  (1132, 1),
  (1163, 1),
  (140, 1),
  (695, 1),
  (15, 1),
  (1296, 1),
  (150, 1),
  (1693, 1),
  (416, 1),
  (1315, 1),
  (550, 1),
  (1704, 1),
  (937, 1),
  (1835, 1),
  (50, 1),
  (176, 1),
  (1847, 1),
  (1842, 1),
  (1843, 1),
  (1844, 1),
  (1845, 1),
  (1846, 1),
  (439, 1),
  (1848, 1),
  (1849, 1),
  (314, 1),
  (1851, 1),
  (188, 1),
  (1853, 1),
  (1854, 1),
  (565, 1),
  (1856, 1),
  (1857, 1),
  (1858, 1),
  (1859, 1),
  (968, 1),
  (1676, 1),
  (330, 1),
  (1483, 1),
  (77, 1),
  (78, 1),
  (808, 1),
  (977, 1),
  (1746, 1),
  (41, 1),
  (88, 1),
  (1850, 1),
  (1761, 1),
  (613, 1),
  (1852, 1),
  (1516, 1),
  (753, 1),
  (755, 1),
  (1783, 1),
  (1855, 1)],
 [(1, 1),
  (2, 1),
  (515, 1),
  (4, 1),
  (150, 1),
  (207, 1),
  (10, 1),
  (1676, 1),
  (695, 1),
  (14, 1),
  (911, 1),
  (1443, 1),
  (73, 1),
  (25, 1),
  (24, 1),
  (1220, 1),
  (538, 1),
  (30, 1),
  (801, 1),
  (1847, 1),
  (36, 1),
  (1862, 1),
  (38, 1),
  (808, 1),
  (937, 1),
  (1864, 1),
  (435, 1),
  (1716, 1),
  (183, 1),
  (186, 1),
  (61, 1),
  (1878, 1),
  (1088, 1),
  (1677, 1),
  (1860, 1),
  (1861, 1),
  (1222, 1),
  (1863, 1),
  (968, 1),
  (1865, 1),
  (1866, 1),
  (1867, 1),
  (1868, 1),
  (77, 1),
  (1870, 1),
  (1869, 1),
  (1872, 1),
  (1873, 1),
  (1746, 1),
  (1875, 1),
  (1876, 1),
  (142, 1),
  (342, 1),
  (983, 1),
  (1754, 1),
  (1871, 1),
  (1500, 1),
  (1757, 1),
  (37, 1),
  (610, 1),
  (103, 1),
  (106, 1),
  (1874, 1),
  (1397, 1),
  (1399, 1),
  (120, 1),
  (1877, 1)],
 [(1, 1),
  (2, 1),
  (180, 1),
  (294, 1),
  (999, 1),
  (1004, 1),
  (695, 1),
  (1676, 1),
  (1746, 1),
  (1881, 1),
  (1869, 1),
  (50, 1),
  (372, 1),
  (245, 1),
  (1879, 1),
  (1880, 1),
  (185, 1),
  (476, 1),
  (557, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (262, 1),
  (1802, 1),
  (791, 1),
  (13, 1),
  (16, 1),
  (151, 1),
  (24, 1),
  (28, 1),
  (1882, 1),
  (302, 1),
  (48, 1),
  (50, 1),
  (1207, 1),
  (824, 1),
  (698, 1),
  (573, 1),
  (394, 1),
  (1860, 1),
  (197, 1),
  (55, 1),
  (77, 1),
  (1367, 1),
  (602, 1),
  (1883, 1),
  (1884, 1),
  (1885, 1),
  (1886, 1),
  (1887, 1),
  (1888, 1),
  (1889, 1),
  (1890, 1),
  (1891, 1),
  (1892, 1),
  (999, 1),
  (10, 1),
  (1275, 1),
  (127, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (103, 1),
  (1607, 1),
  (55, 1),
  (14, 1),
  (207, 1),
  (48, 1),
  (529, 1),
  (182, 1),
  (151, 1)],
 [(1, 1),
  (1794, 1),
  (899, 1),
  (262, 1),
  (267, 1),
  (1914, 1),
  (16, 1),
  (1554, 1),
  (150, 1),
  (631, 1),
  (26, 1),
  (1906, 1),
  (30, 1),
  (81, 1),
  (1905, 1),
  (1193, 1),
  (455, 1),
  (172, 1),
  (173, 1),
  (48, 1),
  (530, 1),
  (821, 1),
  (182, 1),
  (1079, 1),
  (440, 1),
  (313, 1),
  (314, 1),
  (1087, 1),
  (1345, 1),
  (1858, 1),
  (1803, 1),
  (709, 1),
  (71, 1),
  (73, 1),
  (459, 1),
  (977, 1),
  (1913, 1),
  (600, 1),
  (602, 1),
  (1499, 1),
  (872, 1),
  (1915, 1),
  (1893, 1),
  (1894, 1),
  (1895, 1),
  (1896, 1),
  (1897, 1),
  (1898, 1),
  (1899, 1),
  (1900, 1),
  (1901, 1),
  (1902, 1),
  (1903, 1),
  (1904, 1),
  (104, 1),
  (370, 1),
  (1907, 1),
  (1908, 1),
  (1909, 1),
  (1910, 1),
  (1911, 1),
  (1912, 1),
  (55, 1),
  (114, 1),
  (1659, 1)],
 [(128, 1),
  (1, 1),
  (1922, 1),
  (1923, 1),
  (4, 1),
  (1925, 1),
  (1926, 1),
  (1921, 1),
  (1928, 1),
  (1929, 1),
  (1930, 1),
  (1931, 1),
  (12, 1),
  (13, 1),
  (26, 1),
  (1684, 1),
  (405, 1),
  (1430, 1),
  (153, 1),
  (24, 1),
  (1924, 1),
  (538, 1),
  (666, 1),
  (30, 1),
  (149, 1),
  (214, 1),
  (290, 1),
  (36, 1),
  (169, 1),
  (1932, 1),
  (1927, 1),
  (1719, 1),
  (1070, 1),
  (176, 1),
  (180, 1),
  (182, 1),
  (55, 1),
  (197, 1),
  (1338, 1),
  (315, 1),
  (316, 1),
  (317, 1),
  (1920, 1),
  (709, 1),
  (1225, 1),
  (74, 1),
  (183, 1),
  (461, 1),
  (339, 1),
  (86, 1),
  (20, 1),
  (600, 1),
  (601, 1),
  (858, 1),
  (350, 1),
  (1383, 1),
  (616, 1),
  (490, 1),
  (1639, 1),
  (492, 1),
  (756, 1),
  (2, 1),
  (1273, 1),
  (1916, 1),
  (1917, 1),
  (1918, 1),
  (1919, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (1286, 1),
  (13, 1),
  (1934, 1),
  (1935, 1),
  (1936, 1),
  (1937, 1),
  (1938, 1),
  (1939, 1),
  (23, 1),
  (157, 1),
  (1194, 1),
  (1197, 1),
  (687, 1),
  (455, 1),
  (1864, 1),
  (1933, 1),
  (210, 1),
  (1422, 1),
  (93, 1),
  (144, 1),
  (234, 1),
  (123, 1)],
 [(1, 1),
  (2, 1),
  (387, 1),
  (4, 1),
  (1942, 1),
  (903, 1),
  (1545, 1),
  (13, 1),
  (143, 1),
  (1155, 1),
  (1940, 1),
  (1941, 1),
  (1814, 1),
  (1943, 1),
  (1944, 1),
  (1945, 1),
  (1946, 1),
  (1947, 1),
  (1948, 1),
  (1949, 1),
  (1950, 1),
  (1951, 1),
  (1952, 1),
  (807, 1),
  (681, 1),
  (182, 1),
  (649, 1),
  (187, 1),
  (998, 1),
  (752, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (3, 1),
  (4, 1),
  (134, 1),
  (264, 1),
  (150, 1),
  (1944, 1),
  (1953, 1),
  (1954, 1),
  (1955, 1),
  (1956, 1),
  (1957, 1),
  (1958, 1),
  (1959, 1),
  (1960, 1),
  (1961, 1),
  (302, 1),
  (176, 1),
  (691, 1),
  (74, 1),
  (582, 1),
  (1481, 1),
  (330, 1),
  (1634, 1),
  (1275, 1),
  (103, 1),
  (106, 1),
  (114, 1),
  (123, 1),
  (1147, 1),
  (1021, 1)],
 [(1, 1),
  (370, 1),
  (635, 1),
  (4, 1),
  (71, 1),
  (169, 1),
  (458, 1),
  (299, 1),
  (13, 1),
  (14, 1),
  (114, 1),
  (334, 1),
  (822, 1),
  (55, 1),
  (283, 1),
  (60, 1),
  (1962, 1),
  (30, 1)],
 [(1312, 1),
  (1, 1),
  (1387, 1),
  (848, 1),
  (33, 1),
  (169, 1),
  (1963, 1),
  (1964, 1),
  (1965, 1),
  (1966, 1),
  (239, 1),
  (1968, 1),
  (1969, 1),
  (1970, 1),
  (1363, 1),
  (151, 1),
  (1944, 1),
  (26, 1),
  (1967, 1),
  (282, 1),
  (799, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (147, 1),
  (263, 1),
  (968, 1),
  (73, 1),
  (1363, 1),
  (599, 1),
  (1133, 1),
  (910, 1),
  (13, 1),
  (240, 1),
  (1971, 1),
  (1972, 1),
  (321, 1),
  (183, 1),
  (121, 1),
  (93, 1),
  (479, 1)],
 [(1, 1),
  (48, 1),
  (1153, 1),
  (143, 1),
  (240, 1),
  (1363, 1),
  (1973, 1),
  (1974, 1),
  (26, 1),
  (93, 1)],
 [(1, 1),
  (114, 1),
  (74, 1),
  (13, 1),
  (1298, 1),
  (1975, 1),
  (1976, 1),
  (61, 1),
  (799, 1)],
 [(128, 1),
  (4, 1),
  (94, 1),
  (20, 1),
  (672, 1),
  (681, 1),
  (939, 1),
  (48, 1),
  (1585, 1),
  (1973, 1),
  (1977, 1),
  (1978, 1),
  (1979, 1),
  (1980, 1),
  (1981, 1),
  (581, 1),
  (77, 1),
  (1363, 1),
  (601, 1),
  (477, 1),
  (350, 1),
  (618, 1),
  (119, 1)],
 [(128, 1),
  (2, 1),
  (4, 1),
  (262, 1),
  (397, 1),
  (910, 1),
  (143, 1),
  (1326, 1),
  (942, 1),
  (151, 1),
  (153, 1),
  (1306, 1),
  (672, 1),
  (1061, 1),
  (41, 1),
  (1966, 1),
  (435, 1),
  (1976, 1),
  (1083, 1),
  (1982, 1),
  (1983, 1),
  (1984, 1),
  (1985, 1),
  (1986, 1),
  (1987, 1),
  (1988, 1),
  (1989, 1),
  (1990, 1),
  (1991, 1),
  (330, 1),
  (460, 1),
  (1869, 1),
  (13, 1),
  (440, 1),
  (1363, 1),
  (484, 1),
  (1008, 1),
  (114, 1)],
 [(1986, 1),
  (228, 1),
  (936, 1),
  (1993, 1),
  (1994, 1),
  (1995, 1),
  (268, 1),
  (46, 1),
  (1992, 1),
  (146, 1),
  (1943, 1),
  (234, 1),
  (123, 1),
  (93, 1)],
 [(4, 1),
  (455, 1),
  (264, 1),
  (1996, 1),
  (365, 1),
  (1363, 1),
  (1944, 1),
  (890, 1),
  (799, 1)],
 [(512, 1),
  (1, 1),
  (939, 1),
  (1540, 1),
  (2006, 1),
  (1570, 1),
  (1281, 1),
  (128, 1),
  (396, 1),
  (13, 1),
  (272, 1),
  (1682, 1),
  (147, 1),
  (789, 1),
  (4, 1),
  (90, 1),
  (30, 1),
  (33, 1),
  (34, 1),
  (2011, 1),
  (1830, 1),
  (1319, 1),
  (2012, 1),
  (455, 1),
  (172, 1),
  (2013, 1),
  (48, 1),
  (2017, 1),
  (691, 1),
  (180, 1),
  (94, 1),
  (182, 1),
  (187, 1),
  (61, 1),
  (446, 1),
  (2018, 1),
  (834, 1),
  (944, 1),
  (581, 1),
  (1222, 1),
  (583, 1),
  (968, 1),
  (73, 1),
  (330, 1),
  (1997, 1),
  (1998, 1),
  (591, 1),
  (2000, 1),
  (2001, 1),
  (2002, 1),
  (2003, 1),
  (2004, 1),
  (2005, 1),
  (214, 1),
  (2007, 1),
  (2008, 1),
  (2009, 1),
  (2010, 1),
  (1999, 1),
  (1863, 1),
  (861, 1),
  (478, 1),
  (2015, 1),
  (2016, 1),
  (848, 1),
  (1627, 1),
  (1083, 1),
  (230, 1),
  (999, 1),
  (2014, 1),
  (1938, 1),
  (239, 1),
  (754, 1),
  (1011, 1),
  (117, 1),
  (169, 1),
  (123, 1)],
 [(128, 1),
  (1, 1),
  (4, 1),
  (518, 1),
  (521, 1),
  (524, 1),
  (14, 1),
  (143, 1),
  (149, 1),
  (1430, 1),
  (1625, 1),
  (30, 1),
  (33, 1),
  (34, 1),
  (1571, 1),
  (36, 1),
  (1030, 1),
  (809, 1),
  (180, 1),
  (184, 1),
  (191, 1),
  (1222, 1),
  (968, 1),
  (73, 1),
  (461, 1),
  (1359, 1),
  (1508, 1),
  (603, 1),
  (2019, 1),
  (100, 1),
  (2021, 1),
  (2022, 1),
  (2023, 1),
  (2024, 1),
  (2025, 1),
  (2026, 1),
  (2027, 1),
  (2028, 1),
  (2029, 1),
  (2030, 1),
  (2031, 1),
  (2032, 1),
  (2033, 1),
  (2034, 1),
  (2035, 1),
  (2036, 1),
  (120, 1),
  (250, 1),
  (2020, 1)],
 [(512, 1),
  (128, 1),
  (1807, 1),
  (529, 1),
  (24, 1),
  (30, 1),
  (1315, 1),
  (292, 1),
  (421, 1),
  (806, 1),
  (551, 1),
  (300, 1),
  (754, 1),
  (52, 1),
  (53, 1),
  (694, 1),
  (55, 1),
  (59, 1),
  (949, 1),
  (182, 1),
  (2048, 1),
  (590, 1),
  (248, 1),
  (675, 1),
  (271, 1),
  (1119, 1),
  (480, 1),
  (481, 1),
  (2043, 1),
  (1393, 1),
  (920, 1),
  (2037, 1),
  (2038, 1),
  (2039, 1),
  (2040, 1),
  (2041, 1),
  (2042, 1),
  (123, 1),
  (2044, 1),
  (2045, 1),
  (2046, 1),
  (2047, 1)],
 [(1, 1),
  (2, 1),
  (2051, 1),
  (2052, 1),
  (2049, 1),
  (649, 1),
  (2050, 1),
  (16, 1),
  (789, 1),
  (23, 1),
  (34, 1),
  (170, 1),
  (50, 1),
  (61, 1),
  (447, 1),
  (968, 1),
  (457, 1),
  (239, 1),
  (1011, 1),
  (116, 1),
  (117, 1),
  (21, 1),
  (127, 1)],
 [(128, 1),
  (1, 1),
  (2053, 1),
  (2054, 1),
  (2055, 1),
  (2056, 1),
  (2057, 1),
  (2058, 1),
  (2059, 1),
  (143, 1),
  (530, 1),
  (1044, 1),
  (149, 1),
  (150, 1),
  (172, 1),
  (264, 1),
  (699, 1),
  (196, 1),
  (455, 1),
  (77, 1),
  (82, 1),
  (1495, 1),
  (1423, 1),
  (827, 1),
  (117, 1)],
 [(2, 1),
  (131, 1),
  (1032, 1),
  (649, 1),
  (2060, 1),
  (2061, 1),
  (2062, 1),
  (15, 1),
  (2064, 1),
  (1427, 1),
  (789, 1),
  (283, 1),
  (925, 1),
  (288, 1),
  (173, 1),
  (1309, 1),
  (187, 1),
  (672, 1),
  (1474, 1),
  (709, 1),
  (463, 1),
  (848, 1),
  (2063, 1),
  (557, 1),
  (237, 1),
  (113, 1),
  (370, 1),
  (117, 1),
  (121, 1)],
 [(512, 1),
  (1, 1),
  (150, 1),
  (2065, 1),
  (2066, 1),
  (2067, 1),
  (2068, 1),
  (2069, 1),
  (2070, 1),
  (2071, 1),
  (24, 1),
  (1314, 1),
  (419, 1),
  (1572, 1),
  (421, 1),
  (55, 1),
  (699, 1),
  (61, 1),
  (446, 1),
  (1475, 1),
  (1862, 1),
  (341, 1),
  (966, 1),
  (1515, 1),
  (1267, 1),
  (119, 1)],
 [(512, 1),
  (1, 1),
  (2, 1),
  (771, 1),
  (4, 1),
  (182, 1),
  (1057, 1),
  (1116, 1),
  (10, 1),
  (2077, 1),
  (207, 1),
  (1123, 1),
  (479, 1),
  (151, 1),
  (2072, 1),
  (2073, 1),
  (2074, 1),
  (2075, 1),
  (2076, 1),
  (61, 1),
  (831, 1)],
 [(96, 1),
  (2080, 1),
  (2, 1),
  (1475, 1),
  (4, 1),
  (2081, 1),
  (961, 1),
  (649, 1),
  (105, 1),
  (170, 1),
  (951, 1),
  (754, 1),
  (627, 1),
  (73, 1),
  (25, 1),
  (2078, 1),
  (2079, 1)],
 [(512, 1),
  (1, 1),
  (22, 1),
  (262, 1),
  (654, 1),
  (2066, 1),
  (2069, 1),
  (150, 1),
  (30, 1),
  (2082, 1),
  (2083, 1),
  (2084, 1),
  (1158, 1),
  (2086, 1),
  (2087, 1),
  (2088, 1),
  (2089, 1),
  (939, 1),
  (303, 1),
  (1585, 1),
  (350, 1),
  (440, 1),
  (1851, 1),
  (330, 1),
  (79, 1),
  (207, 1),
  (1374, 1),
  (2085, 1),
  (353, 1),
  (107, 1)],
 [(1386, 1),
  (1792, 1),
  (4, 1),
  (1254, 1),
  (33, 1),
  (428, 1),
  (2090, 1),
  (2091, 1),
  (2092, 1),
  (13, 1),
  (2094, 1),
  (1309, 1),
  (1267, 1),
  (2093, 1),
  (1206, 1),
  (444, 1),
  (330, 1),
  (30, 1),
  (1973, 1)],
 [(2096, 1),
  (290, 1),
  (4, 1),
  (294, 1),
  (242, 1),
  (234, 1),
  (204, 1),
  (50, 1),
  (2095, 1),
  (48, 1),
  (2097, 1),
  (114, 1),
  (173, 1),
  (191, 1),
  (239, 1),
  (479, 1)],
 [(2, 1),
  (1381, 1),
  (206, 1),
  (2098, 1),
  (2099, 1),
  (532, 1),
  (183, 1),
  (1693, 1),
  (62, 1)],
 [(1, 1),
  (2, 1),
  (13, 1),
  (1678, 1),
  (146, 1),
  (30, 1),
  (671, 1),
  (34, 1),
  (1444, 1),
  (421, 1),
  (1830, 1),
  (427, 1),
  (435, 1),
  (52, 1),
  (2101, 1),
  (694, 1),
  (55, 1),
  (2104, 1),
  (2100, 1),
  (2106, 1),
  (1344, 1),
  (2102, 1),
  (73, 1),
  (74, 1),
  (2103, 1),
  (162, 1),
  (463, 1),
  (850, 1),
  (2105, 1),
  (1572, 1),
  (1370, 1),
  (932, 1),
  (101, 1),
  (234, 1),
  (2027, 1),
  (1810, 1),
  (1648, 1),
  (248, 1),
  (2041, 1),
  (123, 1),
  (618, 1),
  (1918, 1),
  (1791, 1)],
 [(801, 1),
  (4, 1),
  (167, 1),
  (2111, 1),
  (938, 1),
  (2059, 1),
  (114, 1),
  (1011, 1),
  (1779, 1),
  (183, 1),
  (601, 1),
  (2107, 1),
  (2108, 1),
  (2109, 1),
  (2110, 1),
  (543, 1)],
 [(128, 1),
  (1, 1),
  (3, 1),
  (1924, 1),
  (5, 1),
  (1287, 1),
  (653, 1),
  (1039, 1),
  (16, 1),
  (2066, 1),
  (1813, 1),
  (918, 1),
  (151, 1),
  (24, 1),
  (25, 1),
  (687, 1),
  (1308, 1),
  (1309, 1),
  (30, 1),
  (69, 1),
  (34, 1),
  (298, 1),
  (557, 1),
  (943, 1),
  (48, 1),
  (50, 1),
  (2137, 1),
  (60, 1),
  (2112, 1),
  (2113, 1),
  (2114, 1),
  (2115, 1),
  (2116, 1),
  (2117, 1),
  (2118, 1),
  (2119, 1),
  (2120, 1),
  (2121, 1),
  (2122, 1),
  (2123, 1),
  (1100, 1),
  (2125, 1),
  (2126, 1),
  (2127, 1),
  (720, 1),
  (2129, 1),
  (2130, 1),
  (2131, 1),
  (2132, 1),
  (2133, 1),
  (2134, 1),
  (2135, 1),
  (2136, 1),
  (345, 1),
  (2138, 1),
  (1499, 1),
  (988, 1),
  (2128, 1),
  (700, 1),
  (876, 1),
  (2124, 1),
  (244, 1),
  (123, 1),
  (405, 1)],
 [(128, 1),
  (833, 1),
  (12, 1),
  (788, 1),
  (755, 1),
  (24, 1),
  (2073, 1),
  (1693, 1),
  (290, 1),
  (169, 1),
  (2091, 1),
  (1267, 1),
  (315, 1),
  (188, 1),
  (573, 1),
  (1087, 1),
  (96, 1),
  (1476, 1),
  (73, 1),
  (972, 1),
  (720, 1),
  (2139, 1),
  (2140, 1),
  (2141, 1),
  (2142, 1),
  (2143, 1),
  (2144, 1),
  (2145, 1),
  (2146, 1),
  (2147, 1),
  (2148, 1),
  (2149, 1),
  (2150, 1),
  (2151, 1),
  (2152, 1),
  (2153, 1),
  (106, 1),
  (364, 1),
  (1779, 1),
  (316, 1),
  (511, 1)],
 [(1, 1),
  (4, 1),
  (136, 1),
  (2073, 1),
  (30, 1),
  (801, 1),
  (37, 1),
  (550, 1),
  (169, 1),
  (170, 1),
  (48, 1),
  (1206, 1),
  (197, 1),
  (77, 1),
  (463, 1),
  (2128, 1),
  (487, 1),
  (2154, 1),
  (2155, 1),
  (2156, 1),
  (2157, 1),
  (2158, 1),
  (2159, 1),
  (2160, 1),
  (2161, 1),
  (2162, 1),
  (2163, 1),
  (1130, 1)],
 [(1, 1),
  (2, 1),
  (918, 1),
  (1286, 1),
  (649, 1),
  (13, 1),
  (143, 1),
  (150, 1),
  (408, 1),
  (156, 1),
  (30, 1),
  (2091, 1),
  (178, 1),
  (2095, 1),
  (2096, 1),
  (50, 1),
  (182, 1),
  (1212, 1),
  (1474, 1),
  (458, 1),
  (459, 1),
  (972, 1),
  (77, 1),
  (214, 1),
  (88, 1),
  (93, 1),
  (2147, 1),
  (444, 1),
  (618, 1),
  (370, 1),
  (626, 1),
  (1267, 1),
  (2164, 1),
  (2165, 1),
  (2166, 1),
  (2167, 1),
  (2168, 1),
  (2169, 1),
  (2170, 1),
  (2171, 1),
  (2172, 1),
  (2173, 1),
  (126, 1)],
 [(2176, 1),
  (2177, 1),
  (2178, 1),
  (4, 1),
  (264, 1),
  (526, 1),
  (15, 1),
  (1810, 1),
  (20, 1),
  (937, 1),
  (1598, 1),
  (1474, 1),
  (73, 1),
  (1354, 1),
  (602, 1),
  (103, 1),
  (873, 1),
  (234, 1),
  (752, 1),
  (1907, 1),
  (1272, 1),
  (2174, 1),
  (2175, 1)],
 [(128, 1),
  (2179, 1),
  (2180, 1),
  (2181, 1),
  (2182, 1),
  (2183, 1),
  (2184, 1),
  (73, 1),
  (234, 1),
  (492, 1),
  (28, 1),
  (14, 1),
  (758, 1),
  (2185, 1),
  (1944, 1),
  (601, 1),
  (538, 1),
  (60, 1),
  (410, 1),
  (4, 1)],
 [(0, 1),
  (2, 1),
  (131, 1),
  (2186, 1),
  (2187, 1),
  (2188, 1),
  (2189, 1),
  (2190, 1),
  (2191, 1),
  (2192, 1),
  (2193, 1),
  (2194, 1),
  (2195, 1),
  (2196, 1),
  (1045, 1),
  (2198, 1),
  (2199, 1),
  (2200, 1),
  (25, 1),
  (2202, 1),
  (29, 1),
  (927, 1),
  (551, 1),
  (169, 1),
  (176, 1),
  (2201, 1),
  (446, 1),
  (2197, 1),
  (523, 1),
  (73, 1),
  (1485, 1),
  (1746, 1),
  (106, 1),
  (752, 1),
  (759, 1),
  (1428, 1),
  (123, 1),
  (234, 1),
  (383, 1)],
 [(2, 1),
  (522, 1),
  (523, 1),
  (403, 1),
  (2203, 1),
  (2204, 1),
  (2205, 1),
  (2206, 1),
  (2207, 1),
  (2208, 1),
  (2209, 1),
  (557, 1),
  (949, 1),
  (185, 1),
  (60, 1),
  (207, 1),
  (1111, 1),
  (1497, 1),
  (602, 1),
  (94, 1),
  (616, 1),
  (1005, 1),
  (1654, 1),
  (2039, 1)],
 [(1, 1),
  (146, 1),
  (147, 1),
  (32, 1),
  (2210, 1),
  (2211, 1),
  (2212, 1),
  (2213, 1),
  (2214, 1),
  (2215, 1),
  (2216, 1),
  (303, 1),
  (561, 1),
  (182, 1),
  (1340, 1),
  (61, 1),
  (672, 1),
  (93, 1),
  (484, 1),
  (752, 1),
  (116, 1),
  (890, 1),
  (1021, 1)],
 [(128, 1),
  (1, 1),
  (4, 1),
  (262, 1),
  (12, 1),
  (397, 1),
  (1423, 1),
  (1560, 1),
  (149, 1),
  (25, 1),
  (24, 1),
  (1156, 1),
  (1903, 1),
  (927, 1),
  (932, 1),
  (167, 1),
  (2217, 1),
  (2218, 1),
  (2219, 1),
  (2220, 1),
  (2221, 1),
  (2222, 1),
  (2223, 1),
  (2224, 1),
  (2225, 1),
  (2226, 1),
  (2227, 1),
  (2228, 1),
  (2229, 1),
  (1215, 1),
  (1987, 1),
  (205, 1),
  (1677, 1),
  (340, 1),
  (608, 1),
  (616, 1),
  (1130, 1),
  (2215, 1),
  (1132, 1),
  (239, 1),
  (1524, 1)],
 [(1, 1), (2, 1), (4, 1), (2230, 1), (1011, 1), (84, 1), (147, 1), (182, 1)],
 [(2, 1),
  (2027, 1),
  (228, 1),
  (151, 1),
  (13, 1),
  (1773, 1),
  (1810, 1),
  (116, 1),
  (82, 1),
  (2231, 1),
  (60, 1),
  (30, 1)],
 [(384, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (128, 1),
  (10, 1),
  (1675, 1),
  (529, 1),
  (1938, 1),
  (1045, 1),
  (150, 1),
  (282, 1),
  (239, 1),
  (167, 1),
  (1194, 1),
  (942, 1),
  (93, 1),
  (50, 1),
  (691, 1),
  (1973, 1),
  (182, 1),
  (2232, 1),
  (2233, 1),
  (2234, 1),
  (2235, 1),
  (2236, 1),
  (61, 1),
  (2238, 1),
  (2239, 1),
  (2240, 1),
  (2241, 1),
  (1092, 1),
  (1737, 1),
  (330, 1),
  (88, 1),
  (477, 1),
  (222, 1),
  (479, 1),
  (483, 1),
  (60, 1),
  (512, 1),
  (2237, 1),
  (114, 1),
  (62, 1),
  (119, 1),
  (383, 1)],
 [(1624, 1), (1, 1), (538, 1), (99, 1)],
 [(128, 1),
  (1, 1),
  (2242, 1),
  (2243, 1),
  (4, 1),
  (1128, 1),
  (1609, 1),
  (13, 1),
  (14, 1),
  (1101, 1),
  (754, 1),
  (116, 1),
  (123, 1)],
 [(662, 1),
  (262, 1),
  (903, 1),
  (267, 1),
  (14, 1),
  (403, 1),
  (150, 1),
  (151, 1),
  (283, 1),
  (30, 1),
  (673, 1),
  (169, 1),
  (50, 1),
  (1838, 1),
  (178, 1),
  (822, 1),
  (1097, 1),
  (330, 1),
  (395, 1),
  (2244, 1),
  (2245, 1),
  (2246, 1),
  (2247, 1),
  (2248, 1),
  (2249, 1),
  (2250, 1),
  (2251, 1),
  (2252, 1),
  (2253, 1),
  (2254, 1),
  (207, 1),
  (80, 1),
  (782, 1),
  (2255, 1),
  (988, 1),
  (2256, 1),
  (229, 1),
  (616, 1),
  (106, 1),
  (1016, 1),
  (1023, 1)],
 [(84, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (133, 1),
  (30, 1),
  (1869, 1),
  (398, 1),
  (1680, 1),
  (2257, 1),
  (2258, 1),
  (2259, 1),
  (2260, 1),
  (2261, 1),
  (2262, 1),
  (2263, 1),
  (2264, 1),
  (121, 1),
  (1309, 1),
  (126, 1),
  (293, 1)],
 [(0, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (486, 1),
  (138, 1),
  (1419, 1),
  (140, 1),
  (14, 1),
  (16, 1),
  (791, 1),
  (1309, 1),
  (1499, 1),
  (164, 1),
  (937, 1),
  (50, 1),
  (435, 1),
  (2271, 1),
  (1599, 1),
  (2278, 1),
  (459, 1),
  (1103, 1),
  (1362, 1),
  (2275, 1),
  (910, 1),
  (1367, 1),
  (2265, 1),
  (2266, 1),
  (2267, 1),
  (2268, 1),
  (2269, 1),
  (2270, 1),
  (863, 1),
  (2272, 1),
  (2273, 1),
  (2274, 1),
  (187, 1),
  (2276, 1),
  (997, 1),
  (742, 1),
  (999, 1),
  (2280, 1),
  (873, 1),
  (106, 1),
  (2279, 1),
  (114, 1),
  (243, 1),
  (1015, 1),
  (246, 1),
  (1001, 1),
  (121, 1),
  (762, 1),
  (2277, 1),
  (764, 1),
  (1406, 1)],
 [(1536, 1),
  (1, 1),
  (2283, 1),
  (128, 1),
  (910, 1),
  (529, 1),
  (533, 1),
  (103, 1),
  (33, 1),
  (37, 1),
  (1338, 1),
  (60, 1),
  (73, 1),
  (719, 1),
  (343, 1),
  (602, 1),
  (2139, 1),
  (94, 1),
  (1255, 1),
  (2281, 1),
  (2282, 1),
  (747, 1),
  (2284, 1),
  (2285, 1),
  (499, 1),
  (245, 1),
  (764, 1)],
 [(1, 1),
  (547, 1),
  (709, 1),
  (74, 1),
  (299, 1),
  (239, 1),
  (2286, 1),
  (2287, 1),
  (182, 1),
  (2263, 1),
  (127, 1),
  (764, 1),
  (1599, 1)],
 [(1, 1),
  (4, 1),
  (769, 1),
  (9, 1),
  (10, 1),
  (396, 1),
  (145, 1),
  (21, 1),
  (25, 1),
  (30, 1),
  (752, 1),
  (557, 1),
  (48, 1),
  (286, 1),
  (372, 1),
  (61, 1),
  (455, 1),
  (73, 1),
  (470, 1),
  (1882, 1),
  (1509, 1),
  (487, 1),
  (492, 1),
  (573, 1),
  (2288, 1),
  (2289, 1),
  (2290, 1),
  (2291, 1),
  (2292, 1),
  (2293, 1),
  (510, 1)],
 [(128, 1),
  (4, 1),
  (397, 1),
  (14, 1),
  (16, 1),
  (529, 1),
  (150, 1),
  (25, 1),
  (920, 1),
  (153, 1),
  (1190, 1),
  (680, 1),
  (2218, 1),
  (299, 1),
  (45, 1),
  (2222, 1),
  (176, 1),
  (307, 1),
  (1987, 1),
  (2256, 1),
  (2299, 1),
  (486, 1),
  (1895, 1),
  (1130, 1),
  (2288, 1),
  (2294, 1),
  (2295, 1),
  (2296, 1),
  (2297, 1),
  (2298, 1),
  (123, 1),
  (2300, 1),
  (106, 1)],
 [(2304, 1),
  (2305, 1),
  (1538, 1),
  (2307, 1),
  (4, 1),
  (517, 1),
  (2310, 1),
  (2311, 1),
  (2312, 1),
  (2313, 1),
  (2306, 1),
  (2315, 1),
  (140, 1),
  (13, 1),
  (14, 1),
  (529, 1),
  (151, 1),
  (280, 1),
  (2308, 1),
  (156, 1),
  (29, 1),
  (30, 1),
  (2309, 1),
  (672, 1),
  (547, 1),
  (1797, 1),
  (173, 1),
  (2077, 1),
  (48, 1),
  (821, 1),
  (182, 1),
  (1719, 1),
  (920, 1),
  (10, 1),
  (196, 1),
  (709, 1),
  (72, 1),
  (1609, 1),
  (1207, 1),
  (461, 1),
  (77, 1),
  (2083, 1),
  (212, 1),
  (1623, 1),
  (1752, 1),
  (90, 1),
  (207, 1),
  (187, 1),
  (472, 1),
  (486, 1),
  (999, 1),
  (2281, 1),
  (618, 1),
  (2284, 1),
  (114, 1),
  (628, 1),
  (2314, 1),
  (123, 1),
  (2301, 1),
  (2302, 1),
  (2303, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (771, 1),
  (4, 1),
  (925, 1),
  (862, 1),
  (2316, 1),
  (2317, 1),
  (2318, 1),
  (2319, 1),
  (2320, 1),
  (2321, 1),
  (2322, 1),
  (2323, 1),
  (2324, 1),
  (2325, 1),
  (2326, 1),
  (2327, 1),
  (2328, 1),
  (153, 1),
  (2330, 1),
  (2331, 1),
  (2332, 1),
  (1309, 1),
  (2334, 1),
  (2335, 1),
  (2336, 1),
  (33, 1),
  (2338, 1),
  (2339, 1),
  (36, 1),
  (2341, 1),
  (1446, 1),
  (2343, 1),
  (2344, 1),
  (169, 1),
  (2346, 1),
  (1095, 1),
  (2348, 1),
  (2329, 1),
  (48, 1),
  (945, 1),
  (2333, 1),
  (30, 1),
  (1206, 1),
  (55, 1),
  (180, 1),
  (1724, 1),
  (957, 1),
  (309, 1),
  (2347, 1),
  (1473, 1),
  (1474, 1),
  (2337, 1),
  (968, 1),
  (13, 1),
  (1362, 1),
  (782, 1),
  (1465, 1),
  (2340, 1),
  (463, 1),
  (222, 1),
  (2271, 1),
  (482, 1),
  (99, 1),
  (2342, 1),
  (536, 1),
  (2065, 1),
  (104, 1),
  (1641, 1),
  (999, 1),
  (1682, 1),
  (110, 1),
  (1341, 1),
  (114, 1),
  (628, 1),
  (807, 1),
  (2345, 1),
  (673, 1),
  (123, 1),
  (895, 1)],
 [(2, 1),
  (4, 1),
  (13, 1),
  (14, 1),
  (15, 1),
  (16, 1),
  (24, 1),
  (26, 1),
  (29, 1),
  (30, 1),
  (543, 1),
  (33, 1),
  (1570, 1),
  (39, 1),
  (41, 1),
  (558, 1),
  (48, 1),
  (50, 1),
  (54, 1),
  (55, 1),
  (571, 1),
  (60, 1),
  (573, 1),
  (591, 1),
  (600, 1),
  (94, 1),
  (103, 1),
  (106, 1),
  (128, 1),
  (140, 1),
  (1684, 1),
  (156, 1),
  (157, 1),
  (329, 1),
  (673, 1),
  (184, 1),
  (185, 1),
  (198, 1),
  (715, 1),
  (207, 1),
  (210, 1),
  (215, 1),
  (1241, 1),
  (2377, 1),
  (2282, 1),
  (2285, 1),
  (239, 1),
  (243, 1),
  (1275, 1),
  (2301, 1),
  (264, 1),
  (813, 1),
  (1924, 1),
  (304, 1),
  (807, 1),
  (2349, 1),
  (2350, 1),
  (2351, 1),
  (2352, 1),
  (2353, 1),
  (2354, 1),
  (2355, 1),
  (2356, 1),
  (2357, 1),
  (822, 1),
  (2359, 1),
  (2360, 1),
  (2361, 1),
  (2362, 1),
  (2363, 1),
  (2364, 1),
  (2365, 1),
  (2366, 1),
  (2367, 1),
  (2368, 1),
  (2369, 1),
  (2370, 1),
  (2371, 1),
  (2372, 1),
  (2358, 1),
  (2374, 1),
  (2375, 1),
  (2376, 1),
  (1865, 1),
  (2378, 1),
  (1358, 1),
  (341, 1),
  (858, 1),
  (1889, 1),
  (1510, 1),
  (1340, 1),
  (366, 1),
  (317, 1),
  (1907, 1),
  (884, 1),
  (900, 1),
  (1926, 1),
  (408, 1),
  (1435, 1),
  (2373, 1),
  (1971, 1),
  (949, 1),
  (1353, 1),
  (463, 1),
  (976, 1),
  (1495, 1),
  (476, 1),
  (486, 1),
  (1001, 1),
  (490, 1),
  (1017, 1),
  (1020, 1),
  (509, 1)],
 [(1, 1), (13, 1)],
 [(1, 1),
  (2379, 1),
  (2024, 1),
  (73, 1),
  (43, 1),
  (2380, 1),
  (557, 1),
  (483, 1),
  (440, 1),
  (94, 1)],
 [(2, 1),
  (4, 1),
  (151, 1),
  (153, 1),
  (1699, 1),
  (808, 1),
  (170, 1),
  (2219, 1),
  (180, 1),
  (1338, 1),
  (187, 1),
  (2381, 1),
  (2382, 1),
  (2383, 1),
  (1234, 1),
  (214, 1),
  (350, 1),
  (479, 1),
  (354, 1),
  (867, 1),
  (487, 1),
  (754, 1)],
 [(1, 1), (133, 1), (299, 1), (48, 1), (116, 1), (22, 1), (55, 1), (1119, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (10, 1),
  (140, 1),
  (1422, 1),
  (15, 1),
  (408, 1),
  (26, 1),
  (807, 1),
  (182, 1),
  (1594, 1),
  (578, 1),
  (73, 1),
  (2384, 1),
  (2385, 1),
  (2386, 1),
  (2387, 1),
  (2388, 1),
  (2389, 1),
  (2390, 1),
  (2391, 1),
  (2392, 1),
  (635, 1)],
 [(100, 1),
  (294, 1),
  (236, 1),
  (114, 1),
  (77, 1),
  (210, 1),
  (22, 1),
  (2393, 1),
  (4, 1),
  (2394, 1),
  (1882, 1)],
 [(4, 1),
  (709, 1),
  (1510, 1),
  (103, 1),
  (73, 1),
  (1080, 1),
  (2395, 1),
  (2396, 1)],
 [(4, 1),
  (13, 1),
  (787, 1),
  (149, 1),
  (1560, 1),
  (2338, 1),
  (1955, 1),
  (2222, 1),
  (50, 1),
  (1204, 1),
  (183, 1),
  (185, 1),
  (444, 1),
  (1121, 1),
  (1362, 1),
  (35, 1),
  (472, 1),
  (2397, 1),
  (2398, 1),
  (2399, 1),
  (2400, 1),
  (2401, 1),
  (2402, 1),
  (2403, 1),
  (2404, 1),
  (2405, 1),
  (60, 1),
  (123, 1)],
 [(1, 1),
  (2, 1),
  (483, 1),
  (2406, 1),
  (2407, 1),
  (1132, 1),
  (13, 1),
  (528, 1),
  (50, 1),
  (121, 1),
  (120, 1),
  (1689, 1),
  (383, 1)],
 [(160, 1),
  (1, 1),
  (610, 1),
  (522, 1),
  (1387, 1),
  (173, 1),
  (144, 1),
  (147, 1),
  (602, 1),
  (62, 1)],
 [(1, 1),
  (36, 1),
  (582, 1),
  (2408, 1),
  (73, 1),
  (106, 1),
  (2315, 1),
  (492, 1),
  (13, 1),
  (14, 1),
  (147, 1),
  (117, 1),
  (1206, 1),
  (151, 1),
  (1604, 1),
  (890, 1),
  (795, 1),
  (2409, 1),
  (917, 1)],
 [(1, 1),
  (1508, 1),
  (262, 1),
  (294, 1),
  (104, 1),
  (169, 1),
  (2410, 1),
  (2411, 1),
  (2412, 1),
  (2413, 1),
  (2414, 1),
  (2415, 1),
  (2416, 1),
  (113, 1),
  (24, 1),
  (4, 1),
  (602, 1),
  (795, 1),
  (29, 1),
  (1548, 1)],
 [(2217, 1),
  (1, 1),
  (2, 1),
  (2435, 1),
  (645, 1),
  (1857, 1),
  (1801, 1),
  (128, 1),
  (631, 1),
  (2434, 1),
  (272, 1),
  (146, 1),
  (147, 1),
  (153, 1),
  (24, 1),
  (2073, 1),
  (2333, 1),
  (1571, 1),
  (295, 1),
  (2088, 1),
  (169, 1),
  (299, 1),
  (754, 1),
  (48, 1),
  (949, 1),
  (55, 1),
  (824, 1),
  (60, 1),
  (296, 1),
  (1985, 1),
  (1090, 1),
  (267, 1),
  (2423, 1),
  (1870, 1),
  (80, 1),
  (977, 1),
  (2432, 1),
  (339, 1),
  (380, 1),
  (602, 1),
  (1915, 1),
  (613, 1),
  (2315, 1),
  (2364, 1),
  (2433, 1),
  (2417, 1),
  (2418, 1),
  (2419, 1),
  (2420, 1),
  (2421, 1),
  (2422, 1),
  (937, 1),
  (2424, 1),
  (2425, 1),
  (2426, 1),
  (2427, 1),
  (2428, 1),
  (2429, 1),
  (2430, 1),
  (2431, 1)],
 [(1, 1),
  (2436, 1),
  (2437, 1),
  (2278, 1),
  (73, 1),
  (1482, 1),
  (877, 1),
  (176, 1),
  (117, 1),
  (2168, 1),
  (60, 1),
  (2438, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (389, 1),
  (2439, 1),
  (2440, 1),
  (2441, 1),
  (2442, 1),
  (2443, 1),
  (2444, 1),
  (2445, 1),
  (2446, 1),
  (2447, 1),
  (2448, 1),
  (2449, 1),
  (2450, 1),
  (2451, 1),
  (1300, 1),
  (178, 1),
  (2454, 1),
  (2455, 1),
  (2456, 1),
  (153, 1),
  (29, 1),
  (543, 1),
  (2082, 1),
  (164, 1),
  (549, 1),
  (169, 1),
  (1351, 1),
  (173, 1),
  (307, 1),
  (50, 1),
  (435, 1),
  (187, 1),
  (61, 1),
  (446, 1),
  (831, 1),
  (2457, 1),
  (395, 1),
  (650, 1),
  (71, 1),
  (1736, 1),
  (396, 1),
  (1871, 1),
  (2111, 1),
  (2001, 1),
  (340, 1),
  (345, 1),
  (602, 1),
  (483, 1),
  (81, 1),
  (106, 1),
  (2453, 1),
  (1901, 1),
  (2417, 1),
  (114, 1),
  (574, 1),
  (2452, 1),
  (13, 1),
  (383, 1)],
 [(2176, 1),
  (608, 1),
  (3, 1),
  (2460, 1),
  (1254, 1),
  (264, 1),
  (937, 1),
  (330, 1),
  (13, 1),
  (2459, 1),
  (16, 1),
  (483, 1),
  (116, 1),
  (117, 1),
  (182, 1),
  (248, 1),
  (2458, 1),
  (283, 1),
  (60, 1),
  (2461, 1)],
 [(2464, 1),
  (2465, 1),
  (2466, 1),
  (2467, 1),
  (4, 1),
  (610, 1),
  (1505, 1),
  (382, 1),
  (1387, 1),
  (173, 1),
  (144, 1),
  (945, 1),
  (147, 1),
  (117, 1),
  (1922, 1),
  (602, 1),
  (618, 1),
  (2462, 1),
  (2463, 1)],
 [(2468, 1),
  (2469, 1),
  (2470, 1),
  (2471, 1),
  (1832, 1),
  (458, 1),
  (77, 1),
  (654, 1),
  (1071, 1),
  (1201, 1),
  (117, 1),
  (1625, 1),
  (4, 1),
  (764, 1),
  (573, 1),
  (62, 1),
  (21, 1)],
 [(1536, 1),
  (128, 1),
  (2, 1),
  (4, 1),
  (150, 1),
  (30, 1),
  (928, 1),
  (37, 1),
  (2472, 1),
  (2473, 1),
  (2218, 1),
  (2475, 1),
  (2222, 1),
  (178, 1),
  (949, 1),
  (2474, 1),
  (1077, 1),
  (1348, 1),
  (455, 1),
  (1362, 1),
  (1498, 1),
  (605, 1),
  (2405, 1),
  (1510, 1),
  (106, 1),
  (239, 1),
  (1009, 1),
  (1275, 1),
  (125, 1),
  (2431, 1)],
 [(2477, 1), (2065, 1), (2476, 1), (61, 1), (543, 1)],
 [(1, 1),
  (2482, 1),
  (197, 1),
  (2486, 1),
  (145, 1),
  (2485, 1),
  (583, 1),
  (13, 1),
  (2478, 1),
  (2479, 1),
  (2480, 1),
  (24, 1),
  (114, 1),
  (499, 1),
  (2484, 1),
  (2483, 1),
  (1430, 1),
  (120, 1),
  (2481, 1),
  (1309, 1),
  (517, 1)],
 [(553, 1),
  (492, 1),
  (13, 1),
  (173, 1),
  (720, 1),
  (25, 1),
  (2487, 1),
  (2488, 1),
  (2489, 1),
  (127, 1)],
 [(384, 1),
  (2, 1),
  (4, 1),
  (7, 1),
  (146, 1),
  (1045, 1),
  (2336, 1),
  (1443, 1),
  (37, 1),
  (2215, 1),
  (562, 1),
  (691, 1),
  (2490, 1),
  (2491, 1),
  (60, 1),
  (2493, 1),
  (2494, 1),
  (2495, 1),
  (2496, 1),
  (2497, 1),
  (2498, 1),
  (2499, 1),
  (1351, 1),
  (120, 1),
  (1504, 1),
  (2492, 1),
  (499, 1),
  (2424, 1),
  (1659, 1)],
 [(608, 1),
  (321, 1),
  (1282, 1),
  (4, 1),
  (133, 1),
  (39, 1),
  (73, 1),
  (362, 1),
  (1387, 1),
  (140, 1),
  (1865, 1),
  (239, 1),
  (16, 1),
  (116, 1),
  (1, 1),
  (55, 1),
  (1017, 1),
  (2462, 1)],
 [(100, 1),
  (1130, 1),
  (557, 1),
  (77, 1),
  (4, 1),
  (123, 1),
  (1981, 1),
  (94, 1)],
 [(1, 1),
  (3, 1),
  (1924, 1),
  (903, 1),
  (268, 1),
  (13, 1),
  (1680, 1),
  (144, 1),
  (1604, 1),
  (30, 1),
  (432, 1),
  (2215, 1),
  (2503, 1),
  (303, 1),
  (48, 1),
  (2504, 1),
  (691, 1),
  (2506, 1),
  (1599, 1),
  (2500, 1),
  (2501, 1),
  (2502, 1),
  (327, 1),
  (72, 1),
  (2505, 1),
  (330, 1),
  (972, 1),
  (207, 1),
  (1499, 1),
  (476, 1),
  (94, 1),
  (16, 1),
  (1130, 1),
  (370, 1),
  (1267, 1),
  (4, 1)],
 [(1, 1),
  (1387, 1),
  (37, 1),
  (262, 1),
  (2502, 1),
  (2507, 1),
  (492, 1),
  (14, 1),
  (1298, 1),
  (142, 1),
  (183, 1)],
 [(918, 1),
  (2073, 1),
  (1571, 1),
  (37, 1),
  (294, 1),
  (937, 1),
  (298, 1),
  (1455, 1),
  (60, 1),
  (2508, 1),
  (2509, 1),
  (2510, 1),
  (2511, 1),
  (2512, 1),
  (2513, 1),
  (2514, 1),
  (2515, 1),
  (2516, 1),
  (2517, 1),
  (602, 1),
  (353, 1),
  (229, 1),
  (1510, 1),
  (239, 1),
  (1144, 1)],
 [(4, 1),
  (470, 1),
  (486, 1),
  (77, 1),
  (146, 1),
  (2518, 1),
  (2519, 1),
  (376, 1),
  (602, 1),
  (350, 1),
  (869, 1)],
 [(128, 1),
  (1408, 1),
  (2219, 1),
  (4, 1),
  (774, 1),
  (1495, 1),
  (396, 1),
  (14, 1),
  (1423, 1),
  (16, 1),
  (529, 1),
  (403, 1),
  (149, 1),
  (538, 1),
  (30, 1),
  (1570, 1),
  (37, 1),
  (169, 1),
  (426, 1),
  (811, 1),
  (1964, 1),
  (45, 1),
  (2223, 1),
  (176, 1),
  (182, 1),
  (439, 1),
  (509, 1),
  (60, 1),
  (317, 1),
  (446, 1),
  (1474, 1),
  (1987, 1),
  (73, 1),
  (2024, 1),
  (207, 1),
  (1874, 1),
  (377, 1),
  (2520, 1),
  (2521, 1),
  (2522, 1),
  (2523, 1),
  (2524, 1),
  (2525, 1),
  (2526, 1),
  (2399, 1),
  (2505, 1),
  (2406, 1),
  (870, 1),
  (872, 1),
  (106, 1),
  (2411, 1),
  (12, 1),
  (1903, 1),
  (2417, 1),
  (2291, 1),
  (2293, 1),
  (631, 1),
  (1017, 1),
  (762, 1),
  (2218, 1)],
 [],
 [(96, 1),
  (2528, 1),
  (1987, 1),
  (4, 1),
  (106, 1),
  (1319, 1),
  (10, 1),
  (55, 1),
  (2529, 1),
  (447, 1),
  (246, 1),
  (183, 1),
  (602, 1),
  (2527, 1),
  (573, 1),
  (991, 1)],
 [(1, 1),
  (2530, 1),
  (2531, 1),
  (2532, 1),
  (2533, 1),
  (2534, 1),
  (73, 1),
  (330, 1),
  (13, 1),
  (622, 1),
  (1967, 1),
  (1987, 1),
  (2390, 1),
  (183, 1),
  (120, 1),
  (4, 1),
  (538, 1),
  (60, 1),
  (10, 1)],
 [(2083, 1), (37, 1), (73, 1), (1387, 1), (1298, 1), (60, 1), (30, 1)],
 [(1, 1),
  (235, 1),
  (1158, 1),
  (145, 1),
  (1298, 1),
  (1814, 1),
  (37, 1),
  (937, 1),
  (176, 1),
  (182, 1),
  (1338, 1),
  (60, 1),
  (1602, 1),
  (73, 1),
  (330, 1),
  (2515, 1),
  (2535, 1),
  (2536, 1),
  (2537, 1),
  (2538, 1),
  (2539, 1),
  (2540, 1),
  (2541, 1),
  (2542, 1),
  (117, 1),
  (1193, 1)],
 [(1, 1),
  (37, 1),
  (321, 1),
  (167, 1),
  (397, 1),
  (333, 1),
  (1009, 1),
  (2516, 1),
  (150, 1),
  (602, 1),
  (1499, 1),
  (60, 1),
  (1825, 1),
  (350, 1)],
 [(128, 1),
  (1, 1),
  (2440, 1),
  (4, 1),
  (197, 1),
  (2545, 1),
  (808, 1),
  (73, 1),
  (10, 1),
  (50, 1),
  (2543, 1),
  (2544, 1),
  (497, 1),
  (850, 1),
  (116, 1),
  (182, 1),
  (119, 1),
  (2546, 1),
  (169, 1),
  (1083, 1),
  (92, 1)],
 [(1, 1),
  (4, 1),
  (1669, 1),
  (262, 1),
  (33, 1),
  (872, 1),
  (910, 1),
  (2547, 1),
  (376, 1),
  (371, 1),
  (2548, 1),
  (2549, 1),
  (2550, 1),
  (2551, 1),
  (2552, 1),
  (26, 1),
  (143, 1),
  (1397, 1)],
 [(128, 1),
  (769, 1),
  (2, 1),
  (901, 1),
  (1286, 1),
  (20, 1),
  (538, 1),
  (1055, 1),
  (288, 1),
  (33, 1),
  (34, 1),
  (1576, 1),
  (939, 1),
  (943, 1),
  (50, 1),
  (1973, 1),
  (1083, 1),
  (61, 1),
  (446, 1),
  (1728, 1),
  (198, 1),
  (968, 1),
  (119, 1),
  (77, 1),
  (463, 1),
  (723, 1),
  (727, 1),
  (1642, 1),
  (371, 1),
  (2165, 1),
  (1015, 1),
  (2553, 1),
  (2554, 1),
  (2555, 1),
  (2556, 1),
  (2557, 1),
  (2558, 1)],
 [(1, 1),
  (4, 1),
  (48, 1),
  (234, 1),
  (119, 1),
  (173, 1),
  (16, 1),
  (50, 1),
  (116, 1),
  (1397, 1),
  (151, 1),
  (601, 1),
  (2559, 1)],
 [(2560, 1),
  (2561, 1),
  (2562, 1),
  (2563, 1),
  (4, 1),
  (2565, 1),
  (774, 1),
  (2567, 1),
  (2568, 1),
  (2569, 1),
  (2570, 1),
  (2571, 1),
  (2572, 1),
  (2573, 1),
  (2574, 1),
  (2575, 1),
  (2576, 1),
  (1937, 1),
  (150, 1),
  (791, 1),
  (2564, 1),
  (2077, 1),
  (30, 1),
  (928, 1),
  (932, 1),
  (2566, 1),
  (2218, 1),
  (811, 1),
  (557, 1),
  (2227, 1),
  (2356, 1),
  (54, 1),
  (439, 1),
  (440, 1),
  (317, 1),
  (394, 1),
  (55, 1),
  (1281, 1),
  (205, 1),
  (1102, 1),
  (1362, 1),
  (340, 1),
  (479, 1),
  (1510, 1),
  (2577, 1),
  (106, 1),
  (246, 1),
  (631, 1),
  (122, 1),
  (1275, 1),
  (2431, 1)],
 [(1536, 1),
  (150, 1),
  (103, 1),
  (136, 1),
  (2582, 1),
  (204, 1),
  (109, 1),
  (718, 1),
  (141, 1),
  (616, 1),
  (2578, 1),
  (2579, 1),
  (2580, 1),
  (2581, 1),
  (726, 1),
  (1083, 1),
  (446, 1),
  (2165, 1)],
 [(128, 1),
  (1, 1),
  (770, 1),
  (4, 1),
  (1431, 1),
  (13, 1),
  (16, 1),
  (1298, 1),
  (1428, 1),
  (2581, 1),
  (2583, 1),
  (2584, 1),
  (2585, 1),
  (2586, 1),
  (2587, 1),
  (2588, 1),
  (2589, 1),
  (2590, 1),
  (2079, 1),
  (1834, 1),
  (172, 1),
  (1455, 1),
  (1587, 1),
  (2591, 1),
  (435, 1),
  (25, 1),
  (130, 1),
  (77, 1),
  (206, 1),
  (214, 1),
  (100, 1),
  (116, 1),
  (120, 1),
  (511, 1)],
 [(1, 1),
  (2, 1),
  (2307, 1),
  (1676, 1),
  (1410, 1),
  (1422, 1),
  (527, 1),
  (1298, 1),
  (2592, 1),
  (2593, 1),
  (2594, 1),
  (2595, 1),
  (2596, 1),
  (552, 1),
  (1449, 1),
  (1629, 1),
  (1585, 1),
  (1338, 1),
  (2238, 1),
  (73, 1),
  (74, 1),
  (13, 1),
  (343, 1),
  (15, 1),
  (93, 1),
  (867, 1),
  (487, 1),
  (616, 1),
  (491, 1),
  (758, 1),
  (762, 1)],
 [(100, 1),
  (2597, 1),
  (1830, 1),
  (73, 1),
  (74, 1),
  (1483, 1),
  (758, 1),
  (150, 1),
  (4, 1),
  (93, 1)],
 [(128, 1),
  (1, 1),
  (1443, 1),
  (100, 1),
  (2598, 1),
  (2599, 1),
  (2024, 1),
  (73, 1),
  (12, 1),
  (877, 1),
  (1362, 1),
  (758, 1),
  (521, 1),
  (1341, 1)],
 [(1, 1), (900, 1), (303, 1), (403, 1), (53, 1), (182, 1), (990, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (529, 1),
  (2600, 1),
  (2601, 1),
  (2602, 1),
  (2603, 1),
  (2604, 1),
  (877, 1),
  (649, 1),
  (2024, 1),
  (110, 1),
  (73, 1),
  (378, 1),
  (94, 1)],
 [(512, 1),
  (1, 1),
  (1926, 1),
  (14, 1),
  (403, 1),
  (150, 1),
  (24, 1),
  (2608, 1),
  (2597, 1),
  (42, 1),
  (2605, 1),
  (2606, 1),
  (2607, 1),
  (176, 1),
  (2609, 1),
  (2610, 1),
  (53, 1),
  (55, 1),
  (60, 1),
  (573, 1),
  (73, 1),
  (977, 1),
  (93, 1),
  (2021, 1),
  (492, 1),
  (147, 1),
  (250, 1)],
 [(1, 1),
  (2179, 1),
  (900, 1),
  (262, 1),
  (140, 1),
  (1681, 1),
  (403, 1),
  (1045, 1),
  (150, 1),
  (286, 1),
  (674, 1),
  (1926, 1),
  (167, 1),
  (1707, 1),
  (816, 1),
  (2611, 1),
  (2612, 1),
  (2613, 1),
  (2614, 1),
  (2615, 1),
  (2616, 1),
  (2617, 1),
  (2618, 1),
  (2619, 1),
  (188, 1),
  (1341, 1),
  (53, 1),
  (147, 1),
  (1206, 1),
  (1222, 1),
  (73, 1),
  (2338, 1),
  (333, 1),
  (975, 1),
  (976, 1),
  (977, 1),
  (2132, 1),
  (602, 1),
  (93, 1),
  (95, 1),
  (869, 1),
  (2620, 1),
  (499, 1),
  (758, 1),
  (631, 1)],
 [(1, 1), (2594, 1), (867, 1), (2024, 1), (13, 1), (50, 1)],
 [(1, 1),
  (2, 1),
  (771, 1),
  (4, 1),
  (470, 1),
  (13, 1),
  (149, 1),
  (282, 1),
  (285, 1),
  (2218, 1),
  (811, 1),
  (2222, 1),
  (48, 1),
  (178, 1),
  (60, 1),
  (2621, 1),
  (2622, 1),
  (2623, 1),
  (2624, 1),
  (2625, 1),
  (2626, 1),
  (2627, 1),
  (2628, 1),
  (2629, 1),
  (463, 1),
  (976, 1),
  (214, 1),
  (2397, 1),
  (618, 1),
  (239, 1),
  (2295, 1)],
 [(1, 1),
  (2, 1),
  (2630, 1),
  (33, 1),
  (2024, 1),
  (10, 1),
  (117, 1),
  (1906, 1),
  (399, 1),
  (178, 1),
  (435, 1),
  (53, 1),
  (150, 1),
  (24, 1),
  (2607, 1),
  (538, 1),
  (143, 1),
  (28, 1),
  (573, 1),
  (447, 1)],
 [(4, 1),
  (2437, 1),
  (520, 1),
  (150, 1),
  (5, 1),
  (1061, 1),
  (169, 1),
  (182, 1),
  (2631, 1),
  (2632, 1),
  (2633, 1),
  (2634, 1),
  (483, 1),
  (726, 1),
  (1753, 1),
  (93, 1),
  (1375, 1),
  (480, 1),
  (1634, 1),
  (867, 1),
  (613, 1),
  (2024, 1),
  (117, 1),
  (2299, 1)],
 [(1, 1),
  (483, 1),
  (900, 1),
  (2024, 1),
  (2635, 1),
  (2636, 1),
  (2637, 1),
  (2638, 1),
  (2607, 1),
  (2640, 1),
  (2641, 1),
  (2642, 1),
  (403, 1),
  (990, 1),
  (1017, 1),
  (2639, 1),
  (315, 1),
  (156, 1),
  (13, 1),
  (2206, 1),
  (2191, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (2646, 1),
  (264, 1),
  (10, 1),
  (1035, 1),
  (13, 1),
  (143, 1),
  (150, 1),
  (792, 1),
  (2079, 1),
  (99, 1),
  (678, 1),
  (42, 1),
  (172, 1),
  (557, 1),
  (483, 1),
  (176, 1),
  (2100, 1),
  (2647, 1),
  (183, 1),
  (1341, 1),
  (1797, 1),
  (119, 1),
  (2636, 1),
  (2643, 1),
  (2644, 1),
  (2645, 1),
  (342, 1),
  (1367, 1),
  (2648, 1),
  (2649, 1),
  (867, 1),
  (100, 1),
  (999, 1),
  (2024, 1),
  (616, 1),
  (114, 1),
  (758, 1),
  (631, 1)],
 [(147, 1),
  (1, 1),
  (739, 1),
  (4, 1),
  (758, 1),
  (33, 1),
  (2024, 1),
  (841, 1),
  (74, 1),
  (13, 1),
  (173, 1),
  (141, 1),
  (403, 1),
  (117, 1),
  (150, 1),
  (567, 1),
  (2008, 1),
  (1956, 1),
  (2650, 1),
  (1338, 1),
  (30, 1)],
 [(1, 1),
  (4, 1),
  (1281, 1),
  (1165, 1),
  (14, 1),
  (151, 1),
  (25, 1),
  (808, 1),
  (1324, 1),
  (50, 1),
  (182, 1),
  (440, 1),
  (61, 1),
  (2506, 1),
  (1753, 1),
  (2651, 1),
  (2652, 1),
  (2653, 1),
  (2654, 1),
  (2655, 1),
  (2407, 1),
  (2024, 1),
  (876, 1),
  (1133, 1),
  (121, 1)],
 [(1, 1),
  (2, 1),
  (900, 1),
  (2024, 1),
  (169, 1),
  (1902, 1),
  (143, 1),
  (48, 1),
  (119, 1),
  (121, 1),
  (93, 1)],
 [(128, 1),
  (2667, 1),
  (4, 1),
  (80, 1),
  (652, 1),
  (143, 1),
  (16, 1),
  (146, 1),
  (151, 1),
  (24, 1),
  (672, 1),
  (164, 1),
  (550, 1),
  (48, 1),
  (185, 1),
  (449, 1),
  (2683, 1),
  (246, 1),
  (2248, 1),
  (73, 1),
  (459, 1),
  (976, 1),
  (2680, 1),
  (339, 1),
  (2656, 1),
  (2657, 1),
  (2658, 1),
  (2659, 1),
  (2660, 1),
  (2661, 1),
  (2662, 1),
  (103, 1),
  (2664, 1),
  (2665, 1),
  (2666, 1),
  (2663, 1),
  (2668, 1),
  (2669, 1),
  (2670, 1),
  (2671, 1),
  (2672, 1),
  (2673, 1),
  (2674, 1),
  (2675, 1),
  (2676, 1),
  (2677, 1),
  (2678, 1),
  (2679, 1),
  (120, 1),
  (2681, 1),
  (2682, 1),
  (123, 1),
  (2684, 1),
  (2685, 1)],
 [(2688, 1),
  (1, 1),
  (738, 1),
  (3, 1),
  (1348, 1),
  (486, 1),
  (1345, 1),
  (264, 1),
  (330, 1),
  (652, 1),
  (13, 1),
  (2024, 1),
  (53, 1),
  (342, 1),
  (61, 1),
  (2686, 1),
  (2687, 1)],
 [(2689, 1),
  (2690, 1),
  (2691, 1),
  (4, 1),
  (610, 1),
  (1807, 1),
  (1234, 1),
  (499, 1),
  (121, 1),
  (2692, 1),
  (220, 1),
  (925, 1)],
 [(128, 1),
  (1, 1),
  (2054, 1),
  (2693, 1),
  (2694, 1),
  (2695, 1),
  (2696, 1),
  (2697, 1),
  (2698, 1),
  (239, 1),
  (432, 1),
  (1814, 1),
  (244, 1),
  (149, 1),
  (150, 1),
  (183, 1),
  (1680, 1),
  (1423, 1),
  (60, 1),
  (2301, 1),
  (126, 1)],
 [(2, 1),
  (4, 1),
  (2710, 1),
  (649, 1),
  (2699, 1),
  (2700, 1),
  (2701, 1),
  (2702, 1),
  (2703, 1),
  (2704, 1),
  (2705, 1),
  (2706, 1),
  (2707, 1),
  (2708, 1),
  (2709, 1),
  (150, 1),
  (2711, 1),
  (2712, 1),
  (154, 1),
  (33, 1),
  (675, 1),
  (294, 1),
  (48, 1),
  (50, 1),
  (442, 1),
  (1474, 1),
  (225, 1),
  (77, 1),
  (213, 1),
  (214, 1),
  (1935, 1),
  (94, 1),
  (1120, 1),
  (16, 1),
  (2024, 1),
  (110, 1),
  (1648, 1),
  (116, 1),
  (383, 1)],
 [(1, 1),
  (4, 1),
  (903, 1),
  (1678, 1),
  (146, 1),
  (1300, 1),
  (2713, 1),
  (2714, 1),
  (2715, 1),
  (2716, 1),
  (538, 1),
  (2718, 1),
  (173, 1),
  (2717, 1),
  (48, 1),
  (50, 1),
  (54, 1),
  (571, 1),
  (446, 1),
  (841, 1),
  (123, 1),
  (106, 1),
  (1146, 1),
  (2683, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (3, 1),
  (4, 1),
  (342, 1),
  (263, 1),
  (1545, 1),
  (10, 1),
  (140, 1),
  (13, 1),
  (150, 1),
  (151, 1),
  (2718, 1),
  (2719, 1),
  (2720, 1),
  (2721, 1),
  (2722, 1),
  (295, 1),
  (48, 1),
  (30, 1),
  (1567, 1),
  (317, 1),
  (446, 1),
  (2248, 1),
  (2507, 1),
  (465, 1),
  (470, 1),
  (94, 1),
  (100, 1),
  (492, 1)],
 [(1, 1),
  (2306, 1),
  (2723, 1),
  (2724, 1),
  (808, 1),
  (13, 1),
  (398, 1),
  (207, 1),
  (2248, 1),
  (787, 1),
  (151, 1),
  (164, 1),
  (764, 1),
  (2495, 1)],
 [(576, 1),
  (2725, 1),
  (2726, 1),
  (2727, 1),
  (2728, 1),
  (73, 1),
  (107, 1),
  (1576, 1),
  (1586, 1),
  (499, 1),
  (151, 1),
  (439, 1),
  (61, 1),
  (2398, 1)],
 [(240, 1),
  (4, 1),
  (1, 1),
  (2729, 1),
  (13, 1),
  (2286, 1),
  (1199, 1),
  (48, 1),
  (499, 1),
  (25, 1),
  (151, 1),
  (2640, 1),
  (601, 1)],
 [(1, 1),
  (2, 1),
  (134, 1),
  (262, 1),
  (12, 1),
  (73, 1),
  (2730, 1),
  (2731, 1),
  (2732, 1),
  (13, 1),
  (2734, 1),
  (2733, 1),
  (2736, 1),
  (216, 1),
  (1654, 1),
  (24, 1),
  (2735, 1)],
 [(1, 1),
  (34, 1),
  (976, 1),
  (1345, 1),
  (2248, 1),
  (73, 1),
  (2282, 1),
  (599, 1),
  (12, 1),
  (526, 1),
  (16, 1),
  (2737, 1),
  (2738, 1),
  (1870, 1),
  (150, 1),
  (887, 1),
  (600, 1),
  (510, 1),
  (93, 1),
  (126, 1),
  (53, 1)],
 [(128, 1),
  (1, 1),
  (10, 1),
  (591, 1),
  (48, 1),
  (50, 1),
  (2739, 1),
  (2740, 1),
  (150, 1),
  (1399, 1),
  (1368, 1),
  (1017, 1),
  (1354, 1)],
 [(1, 1),
  (3, 1),
  (4, 1),
  (133, 1),
  (263, 1),
  (522, 1),
  (2699, 1),
  (140, 1),
  (13, 1),
  (14, 1),
  (1935, 1),
  (150, 1),
  (153, 1),
  (2718, 1),
  (372, 1),
  (298, 1),
  (939, 1),
  (61, 1),
  (48, 1),
  (50, 1),
  (691, 1),
  (2741, 1),
  (2742, 1),
  (2743, 1),
  (2744, 1),
  (2745, 1),
  (2746, 1),
  (2747, 1),
  (2748, 1),
  (1725, 1),
  (2750, 1),
  (309, 1),
  (2752, 1),
  (1345, 1),
  (2499, 1),
  (708, 1),
  (2248, 1),
  (73, 1),
  (499, 1),
  (77, 1),
  (718, 1),
  (2637, 1),
  (2640, 1),
  (2574, 1),
  (599, 1),
  (98, 1),
  (103, 1),
  (60, 1),
  (1646, 1),
  (2749, 1),
  (240, 1),
  (627, 1),
  (244, 1),
  (121, 1),
  (2751, 1)],
 [(385, 1),
  (2562, 1),
  (771, 1),
  (4, 1),
  (773, 1),
  (774, 1),
  (776, 1),
  (209, 1),
  (13, 1),
  (14, 1),
  (529, 1),
  (149, 1),
  (407, 1),
  (1816, 1),
  (410, 1),
  (29, 1),
  (30, 1),
  (290, 1),
  (675, 1),
  (134, 1),
  (550, 1),
  (2217, 1),
  (1067, 1),
  (434, 1),
  (173, 1),
  (2222, 1),
  (2769, 1),
  (176, 1),
  (50, 1),
  (180, 1),
  (949, 1),
  (55, 1),
  (2753, 1),
  (2754, 1),
  (2755, 1),
  (2756, 1),
  (2757, 1),
  (2758, 1),
  (2759, 1),
  (2760, 1),
  (2761, 1),
  (2762, 1),
  (2763, 1),
  (1356, 1),
  (2765, 1),
  (2766, 1),
  (2767, 1),
  (2768, 1),
  (2641, 1),
  (2770, 1),
  (340, 1),
  (2005, 1),
  (214, 1),
  (2764, 1),
  (2404, 1),
  (1498, 1),
  (603, 1),
  (2268, 1),
  (2397, 1),
  (2021, 1),
  (608, 1),
  (1633, 1),
  (739, 1),
  (100, 1),
  (1510, 1),
  (486, 1),
  (178, 1),
  (1130, 1),
  (1391, 1),
  (106, 1),
  (1780, 1),
  (117, 1),
  (246, 1),
  (631, 1),
  (764, 1),
  (2301, 1)],
 [(1, 1),
  (2404, 1),
  (774, 1),
  (1222, 1),
  (2248, 1),
  (2251, 1),
  (13, 1),
  (207, 1),
  (2771, 1),
  (2772, 1),
  (2773, 1),
  (2774, 1),
  (88, 1),
  (787, 1),
  (2683, 1),
  (222, 1),
  (95, 1)],
 [(4, 1),
  (262, 1),
  (10, 1),
  (268, 1),
  (13, 1),
  (15, 1),
  (144, 1),
  (2200, 1),
  (30, 1),
  (421, 1),
  (558, 1),
  (48, 1),
  (185, 1),
  (315, 1),
  (455, 1),
  (722, 1),
  (2775, 1),
  (2776, 1),
  (2777, 1),
  (2778, 1),
  (2779, 1),
  (96, 1),
  (1508, 1),
  (1130, 1),
  (2160, 1),
  (249, 1)],
 [(48, 1), (1, 1), (2024, 1), (446, 1), (321, 1)],
 [(841, 1), (147, 1), (4, 1), (141, 1), (2780, 1)],
 [(1, 1),
  (2, 1),
  (582, 1),
  (262, 1),
  (870, 1),
  (1005, 1),
  (397, 1),
  (463, 1),
  (240, 1),
  (499, 1),
  (117, 1),
  (151, 1),
  (602, 1),
  (1147, 1),
  (2781, 1),
  (2782, 1),
  (917, 1)],
 [(2784, 1),
  (1, 1),
  (115, 1),
  (708, 1),
  (229, 1),
  (1032, 1),
  (13, 1),
  (977, 1),
  (50, 1),
  (741, 1),
  (153, 1),
  (2783, 1)],
 [(1, 1),
  (2, 1),
  (388, 1),
  (262, 1),
  (136, 1),
  (1325, 1),
  (1298, 1),
  (147, 1),
  (2196, 1),
  (151, 1),
  (24, 1),
  (4, 1),
  (30, 1),
  (681, 1),
  (1194, 1),
  (173, 1),
  (176, 1),
  (945, 1),
  (50, 1),
  (182, 1),
  (60, 1),
  (321, 1),
  (1222, 1),
  (1736, 1),
  (77, 1),
  (1743, 1),
  (848, 1),
  (463, 1),
  (2785, 1),
  (2786, 1),
  (1251, 1),
  (233, 1),
  (754, 1),
  (117, 1),
  (118, 1),
  (631, 1),
  (121, 1),
  (123, 1)],
 [(1, 1), (2787, 1), (173, 1), (147, 1), (117, 1), (446, 1), (1011, 1)],
 [(290, 1),
  (2788, 1),
  (13, 1),
  (14, 1),
  (77, 1),
  (117, 1),
  (120, 1),
  (100, 1),
  (186, 1)],
 [(128, 1),
  (1, 1),
  (178, 1),
  (2796, 1),
  (876, 1),
  (12, 1),
  (13, 1),
  (2702, 1),
  (2703, 1),
  (1680, 1),
  (1298, 1),
  (277, 1),
  (2436, 1),
  (2074, 1),
  (30, 1),
  (653, 1),
  (1072, 1),
  (110, 1),
  (35, 1),
  (36, 1),
  (1704, 1),
  (937, 1),
  (2793, 1),
  (172, 1),
  (301, 1),
  (558, 1),
  (48, 1),
  (562, 1),
  (180, 1),
  (2590, 1),
  (182, 1),
  (73, 1),
  (1338, 1),
  (100, 1),
  (2800, 1),
  (1633, 1),
  (968, 1),
  (1865, 1),
  (631, 1),
  (207, 1),
  (80, 1),
  (14, 1),
  (214, 1),
  (932, 1),
  (602, 1),
  (1615, 1),
  (2398, 1),
  (2527, 1),
  (1505, 1),
  (233, 1),
  (2789, 1),
  (2790, 1),
  (2791, 1),
  (2792, 1),
  (1769, 1),
  (2794, 1),
  (2795, 1),
  (492, 1),
  (2797, 1),
  (2798, 1),
  (2799, 1),
  (1264, 1),
  (116, 1),
  (245, 1),
  (887, 1),
  (125, 1)],
 [(128, 1),
  (2566, 1),
  (13, 1),
  (529, 1),
  (1560, 1),
  (30, 1),
  (672, 1),
  (774, 1),
  (2219, 1),
  (48, 1),
  (307, 1),
  (822, 1),
  (439, 1),
  (830, 1),
  (2766, 1),
  (1362, 1),
  (1130, 1),
  (365, 1),
  (2801, 1),
  (2802, 1),
  (1779, 1),
  (895, 1)],
 [(1, 1),
  (2805, 1),
  (22, 1),
  (38, 1),
  (263, 1),
  (649, 1),
  (234, 1),
  (2, 1),
  (435, 1),
  (1198, 1),
  (529, 1),
  (2803, 1),
  (2804, 1),
  (213, 1),
  (2806, 1),
  (73, 1),
  (340, 1),
  (538, 1),
  (394, 1),
  (2702, 1),
  (159, 1)],
 [(1, 1), (2, 1), (1474, 1), (848, 1), (499, 1), (121, 1)],
 [(1, 1),
  (1029, 1),
  (7, 1),
  (264, 1),
  (13, 1),
  (143, 1),
  (147, 1),
  (788, 1),
  (150, 1),
  (30, 1),
  (937, 1),
  (173, 1),
  (48, 1),
  (1073, 1),
  (286, 1),
  (198, 1),
  (332, 1),
  (340, 1),
  (214, 1),
  (1623, 1),
  (91, 1),
  (1632, 1),
  (103, 1),
  (877, 1),
  (499, 1),
  (117, 1),
  (2807, 1),
  (2808, 1),
  (2809, 1),
  (2810, 1),
  (2811, 1)],
 [(1, 1), (147, 1), (4, 1), (187, 1), (262, 1)],
 [(672, 1),
  (1, 1),
  (801, 1),
  (10, 1),
  (1483, 1),
  (499, 1),
  (240, 1),
  (721, 1),
  (562, 1),
  (243, 1),
  (150, 1),
  (2139, 1),
  (2812, 1),
  (2813, 1),
  (1011, 1)],
 [(2816, 1),
  (2817, 1),
  (2818, 1),
  (2563, 1),
  (4, 1),
  (645, 1),
  (262, 1),
  (1, 1),
  (2057, 1),
  (13, 1),
  (143, 1),
  (2819, 1),
  (149, 1),
  (153, 1),
  (2821, 1),
  (33, 1),
  (34, 1),
  (1956, 1),
  (681, 1),
  (298, 1),
  (178, 1),
  (2352, 1),
  (2820, 1),
  (50, 1),
  (1204, 1),
  (1206, 1),
  (573, 1),
  (2, 1),
  (182, 1),
  (1615, 1),
  (341, 1),
  (1494, 1),
  (602, 1),
  (2784, 1),
  (1634, 1),
  (2789, 1),
  (103, 1),
  (61, 1),
  (370, 1),
  (1011, 1),
  (1278, 1),
  (887, 1),
  (2808, 1),
  (121, 1),
  (2428, 1),
  (2814, 1),
  (2815, 1)],
 [(128, 1),
  (1, 1),
  (2830, 1),
  (2182, 1),
  (2823, 1),
  (2824, 1),
  (2825, 1),
  (2826, 1),
  (2827, 1),
  (2828, 1),
  (2829, 1),
  (1422, 1),
  (15, 1),
  (272, 1),
  (2833, 1),
  (146, 1),
  (150, 1),
  (409, 1),
  (286, 1),
  (1956, 1),
  (2822, 1),
  (1065, 1),
  (946, 1),
  (2440, 1),
  (562, 1),
  (30, 1),
  (60, 1),
  (1973, 1),
  (1472, 1),
  (268, 1),
  (1738, 1),
  (1483, 1),
  (1615, 1),
  (14, 1),
  (90, 1),
  (2831, 1),
  (2832, 1),
  (869, 1),
  (887, 1),
  (341, 1)],
 [(1, 1),
  (1956, 1),
  (2021, 1),
  (14, 1),
  (2834, 1),
  (2835, 1),
  (2836, 1),
  (4, 1),
  (1596, 1),
  (1374, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (197, 1),
  (2057, 1),
  (226, 1),
  (207, 1),
  (144, 1),
  (1938, 1),
  (691, 1),
  (917, 1),
  (118, 1),
  (151, 1),
  (602, 1),
  (1971, 1)],
 [(48, 1), (1, 1), (4, 1), (2837, 1), (2838, 1)],
 [(1154, 1),
  (4, 1),
  (1797, 1),
  (2839, 1),
  (2840, 1),
  (2841, 1),
  (2842, 1),
  (2843, 1),
  (2844, 1),
  (1437, 1),
  (2846, 1),
  (1823, 1),
  (1435, 1),
  (169, 1),
  (299, 1),
  (157, 1),
  (48, 1),
  (841, 1),
  (184, 1),
  (573, 1),
  (958, 1),
  (2845, 1),
  (2757, 1),
  (71, 1),
  (2761, 1),
  (55, 1),
  (547, 1),
  (1500, 1),
  (106, 1)],
 [(1, 1),
  (2, 1),
  (1032, 1),
  (1548, 1),
  (2861, 1),
  (144, 1),
  (24, 1),
  (146, 1),
  (1684, 1),
  (917, 1),
  (25, 1),
  (536, 1),
  (153, 1),
  (540, 1),
  (2847, 1),
  (2848, 1),
  (2849, 1),
  (2338, 1),
  (2851, 1),
  (2852, 1),
  (2853, 1),
  (2854, 1),
  (2855, 1),
  (2856, 1),
  (937, 1),
  (2858, 1),
  (2859, 1),
  (2860, 1),
  (173, 1),
  (182, 1),
  (573, 1),
  (62, 1),
  (1312, 1),
  (709, 1),
  (966, 1),
  (71, 1),
  (54, 1),
  (631, 1),
  (2850, 1),
  (722, 1),
  (483, 1),
  (214, 1),
  (36, 1),
  (602, 1),
  (1755, 1),
  (988, 1),
  (613, 1),
  (993, 1),
  (1123, 1),
  (2857, 1),
  (1381, 1),
  (103, 1),
  (872, 1),
  (106, 1),
  (2032, 1),
  (115, 1),
  (117, 1),
  (2294, 1),
  (681, 1),
  (376, 1),
  (1276, 1),
  (383, 1)],
 [(608, 1),
  (4, 1),
  (101, 1),
  (2865, 1),
  (169, 1),
  (618, 1),
  (171, 1),
  (1324, 1),
  (77, 1),
  (2862, 1),
  (2863, 1),
  (2864, 1),
  (2648, 1),
  (210, 1),
  (24, 1),
  (121, 1),
  (463, 1),
  (29, 1),
  (286, 1),
  (133, 1)],
 [(4, 1),
  (2694, 1),
  (2855, 1),
  (649, 1),
  (522, 1),
  (1490, 1),
  (2866, 1),
  (2867, 1),
  (180, 1),
  (2869, 1),
  (726, 1),
  (2868, 1),
  (2835, 1),
  (1524, 1),
  (62, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (15, 1),
  (1310, 1),
  (288, 1),
  (294, 1),
  (558, 1),
  (50, 1),
  (2870, 1),
  (2871, 1),
  (2872, 1),
  (62, 1),
  (1983, 1),
  (77, 1),
  (718, 1),
  (1231, 1),
  (602, 1),
  (143, 1),
  (106, 1),
  (2802, 1),
  (244, 1),
  (117, 1),
  (234, 1)],
 [(1, 1), (48, 1), (169, 1), (459, 1), (144, 1), (2873, 1)],
 [(1, 1),
  (2875, 1),
  (1956, 1),
  (101, 1),
  (2502, 1),
  (73, 1),
  (140, 1),
  (1133, 1),
  (558, 1),
  (13, 1),
  (720, 1),
  (529, 1),
  (691, 1),
  (150, 1),
  (857, 1),
  (153, 1),
  (100, 1),
  (2874, 1),
  (184, 1),
  (120, 1)],
 [(1, 1), (610, 1), (264, 1), (170, 1), (121, 1), (2876, 1), (618, 1)],
 [(1, 1),
  (2, 1),
  (1251, 1),
  (4, 1),
  (2877, 1),
  (529, 1),
  (2408, 1),
  (77, 1),
  (143, 1),
  (144, 1),
  (1009, 1),
  (2819, 1),
  (147, 1),
  (1494, 1),
  (183, 1),
  (345, 1),
  (283, 1),
  (573, 1),
  (2878, 1),
  (2879, 1)],
 [(1, 1),
  (771, 1),
  (262, 1),
  (520, 1),
  (649, 1),
  (16, 1),
  (917, 1),
  (23, 1),
  (30, 1),
  (552, 1),
  (182, 1),
  (1723, 1),
  (830, 1),
  (2880, 1),
  (2881, 1),
  (2882, 1),
  (2883, 1),
  (2884, 1),
  (709, 1),
  (77, 1),
  (117, 1),
  (121, 1)],
 [(672, 1),
  (4, 1),
  (2885, 1),
  (2886, 1),
  (2887, 1),
  (10, 1),
  (2414, 1),
  (1009, 1),
  (2196, 1),
  (189, 1),
  (30, 1)],
 [(128, 1),
  (4, 1),
  (520, 1),
  (905, 1),
  (10, 1),
  (2572, 1),
  (13, 1),
  (16, 1),
  (150, 1),
  (304, 1),
  (38, 1),
  (552, 1),
  (557, 1),
  (48, 1),
  (968, 1),
  (55, 1),
  (1083, 1),
  (330, 1),
  (1348, 1),
  (197, 1),
  (2888, 1),
  (2889, 1),
  (2890, 1),
  (2891, 1),
  (2892, 1),
  (2893, 1),
  (2894, 1),
  (2895, 1),
  (2896, 1),
  (2897, 1),
  (2898, 1),
  (214, 1),
  (479, 1),
  (1506, 1),
  (1507, 1),
  (230, 1),
  (103, 1),
  (2024, 1),
  (12, 1),
  (626, 1),
  (2291, 1),
  (762, 1),
  (123, 1)],
 [(4, 1),
  (13, 1),
  (532, 1),
  (29, 1),
  (37, 1),
  (1206, 1),
  (187, 1),
  (60, 1),
  (455, 1),
  (207, 1),
  (2899, 1),
  (2900, 1),
  (2901, 1),
  (2902, 1),
  (2903, 1),
  (2904, 1),
  (2905, 1),
  (602, 1),
  (2907, 1),
  (1504, 1),
  (483, 1),
  (2906, 1),
  (237, 1),
  (1648, 1),
  (2801, 1),
  (246, 1)],
 [(2, 1), (4, 1), (262, 1), (10, 1), (1009, 1), (18, 1), (123, 1), (298, 1)],
 [(1, 1),
  (4, 1),
  (133, 1),
  (1009, 1),
  (330, 1),
  (13, 1),
  (209, 1),
  (439, 1),
  (121, 1),
  (2908, 1),
  (2909, 1),
  (2910, 1),
  (2911, 1)],
 [(2912, 1),
  (288, 1),
  (1154, 1),
  (99, 1),
  (1926, 1),
  (2913, 1),
  (939, 1),
  (268, 1),
  (13, 1),
  (658, 1),
  (50, 1),
  (918, 1),
  (61, 1),
  (2, 1),
  (103, 1),
  (2749, 1),
  (30, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (774, 1),
  (138, 1),
  (1035, 1),
  (396, 1),
  (13, 1),
  (156, 1),
  (543, 1),
  (1446, 1),
  (42, 1),
  (302, 1),
  (691, 1),
  (183, 1),
  (185, 1),
  (61, 1),
  (319, 1),
  (198, 1),
  (73, 1),
  (759, 1),
  (2898, 1),
  (470, 1),
  (2917, 1),
  (2914, 1),
  (2915, 1),
  (2916, 1),
  (2918, 1),
  (486, 1),
  (2919, 1),
  (2920, 1),
  (2921, 1),
  (1130, 1),
  (1234, 1),
  (957, 1),
  (1140, 1),
  (1399, 1),
  (890, 1)],
 [(1, 1),
  (1571, 1),
  (2183, 1),
  (2504, 1),
  (1001, 1),
  (2922, 1),
  (2923, 1),
  (1281, 1),
  (2925, 1),
  (2926, 1),
  (2927, 1),
  (2924, 1),
  (721, 1),
  (530, 1),
  (754, 1),
  (1497, 1),
  (26, 1),
  (2238, 1)],
 [(1, 1),
  (2694, 1),
  (1009, 1),
  (649, 1),
  (330, 1),
  (1132, 1),
  (461, 1),
  (2928, 1),
  (2929, 1),
  (499, 1),
  (150, 1),
  (30, 1)],
 [(2944, 1),
  (2945, 1),
  (770, 1),
  (2947, 1),
  (4, 1),
  (133, 1),
  (2950, 1),
  (2951, 1),
  (264, 1),
  (2953, 1),
  (13, 1),
  (14, 1),
  (15, 1),
  (2837, 1),
  (150, 1),
  (2948, 1),
  (239, 1),
  (2946, 1),
  (1797, 1),
  (1017, 1),
  (48, 1),
  (674, 1),
  (261, 1),
  (37, 1),
  (470, 1),
  (169, 1),
  (172, 1),
  (626, 1),
  (302, 1),
  (176, 1),
  (2952, 1),
  (50, 1),
  (115, 1),
  (1076, 1),
  (182, 1),
  (60, 1),
  (189, 1),
  (446, 1),
  (2934, 1),
  (631, 1),
  (718, 1),
  (207, 1),
  (1784, 1),
  (83, 1),
  (84, 1),
  (213, 1),
  (214, 1),
  (121, 1),
  (90, 1),
  (2949, 1),
  (92, 1),
  (512, 1),
  (2014, 1),
  (61, 1),
  (739, 1),
  (228, 1),
  (997, 1),
  (1510, 1),
  (106, 1),
  (2941, 1),
  (645, 1),
  (2930, 1),
  (2931, 1),
  (2932, 1),
  (2933, 1),
  (1142, 1),
  (2935, 1),
  (2936, 1),
  (2937, 1),
  (2938, 1),
  (2939, 1),
  (2940, 1),
  (125, 1),
  (2942, 1),
  (2943, 1)],
 [(1120, 1),
  (321, 1),
  (4, 1),
  (455, 1),
  (2928, 1),
  (137, 1),
  (522, 1),
  (2955, 1),
  (2956, 1),
  (2957, 1),
  (2954, 1),
  (207, 1),
  (48, 1),
  (529, 1),
  (10, 1),
  (83, 1),
  (84, 1),
  (2808, 1),
  (330, 1),
  (349, 1),
  (30, 1)],
 [(263, 1),
  (2465, 1),
  (2375, 1),
  (4, 1),
  (103, 1),
  (2024, 1),
  (138, 1),
  (939, 1),
  (492, 1),
  (13, 1),
  (2958, 1),
  (2959, 1),
  (48, 1),
  (81, 1),
  (114, 1),
  (2870, 1),
  (2960, 1),
  (26, 1),
  (2954, 1),
  (94, 1),
  (447, 1)],
 [(1699, 1),
  (1348, 1),
  (197, 1),
  (13, 1),
  (77, 1),
  (14, 1),
  (2575, 1),
  (2961, 1),
  (50, 1),
  (2963, 1),
  (634, 1),
  (573, 1),
  (1533, 1),
  (2962, 1)],
 [(1504, 1),
  (2753, 1),
  (48, 1),
  (246, 1),
  (1, 1),
  (2453, 1),
  (1001, 1),
  (106, 1),
  (331, 1),
  (2512, 1),
  (2966, 1),
  (2964, 1),
  (2965, 1),
  (182, 1),
  (311, 1),
  (55, 1),
  (125, 1),
  (543, 1)],
 [(1, 1),
  (4, 1),
  (263, 1),
  (151, 1),
  (16, 1),
  (277, 1),
  (2967, 1),
  (2968, 1),
  (2969, 1),
  (2970, 1),
  (29, 1),
  (30, 1),
  (545, 1),
  (1577, 1),
  (1197, 1),
  (48, 1),
  (178, 1),
  (435, 1),
  (1338, 1),
  (1607, 1),
  (2125, 1),
  (338, 1),
  (342, 1),
  (1368, 1),
  (2393, 1),
  (93, 1),
  (1123, 1),
  (228, 1),
  (2794, 1),
  (2284, 1),
  (562, 1)],
 [(2, 1),
  (4, 1),
  (1926, 1),
  (1455, 1),
  (140, 1),
  (13, 1),
  (782, 1),
  (1386, 1),
  (2971, 1),
  (2972, 1),
  (2973, 1),
  (2974, 1),
  (2975, 1),
  (2976, 1),
  (2977, 1),
  (674, 1),
  (2979, 1),
  (2980, 1),
  (2981, 1),
  (2982, 1),
  (2983, 1),
  (2984, 1),
  (557, 1),
  (1327, 1),
  (30, 1),
  (439, 1),
  (94, 1),
  (1087, 1),
  (288, 1),
  (199, 1),
  (1736, 1),
  (73, 1),
  (2978, 1),
  (77, 1),
  (1490, 1),
  (83, 1),
  (84, 1),
  (1017, 1),
  (601, 1),
  (602, 1),
  (2014, 1),
  (2917, 1),
  (103, 1),
  (1130, 1),
  (340, 1),
  (63, 1),
  (1660, 1),
  (2301, 1)],
 [(2067, 1),
  (129, 1),
  (2992, 1),
  (4, 1),
  (1985, 1),
  (13, 1),
  (45, 1),
  (1552, 1),
  (2179, 1),
  (149, 1),
  (661, 1),
  (2200, 1),
  (947, 1),
  (30, 1),
  (2885, 1),
  (672, 1),
  (752, 1),
  (2978, 1),
  (931, 1),
  (37, 1),
  (2363, 1),
  (2985, 1),
  (2986, 1),
  (2987, 1),
  (2988, 1),
  (2989, 1),
  (2990, 1),
  (2991, 1),
  (48, 1),
  (2993, 1),
  (2994, 1),
  (2995, 1),
  (2996, 1),
  (2014, 1),
  (2998, 1),
  (2999, 1),
  (3000, 1),
  (3001, 1),
  (3002, 1),
  (827, 1),
  (60, 1),
  (3005, 1),
  (2997, 1),
  (416, 1),
  (203, 1),
  (1590, 1),
  (968, 1),
  (73, 1),
  (187, 1),
  (1483, 1),
  (461, 1),
  (1105, 1),
  (675, 1),
  (2901, 1),
  (949, 1),
  (602, 1),
  (2270, 1),
  (3003, 1),
  (228, 1),
  (3004, 1),
  (1312, 1),
  (2928, 1),
  (1009, 1),
  (302, 1),
  (245, 1),
  (1139, 1),
  (169, 1),
  (511, 1)],
 [(530, 1),
  (2837, 1),
  (282, 1),
  (671, 1),
  (672, 1),
  (165, 1),
  (1830, 1),
  (2343, 1),
  (2217, 1),
  (1708, 1),
  (50, 1),
  (691, 1),
  (1465, 1),
  (700, 1),
  (189, 1),
  (3006, 1),
  (1343, 1),
  (3008, 1),
  (3009, 1),
  (2761, 1),
  (487, 1),
  (362, 1),
  (1136, 1),
  (627, 1),
  (3007, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (1281, 1),
  (13, 1),
  (2196, 1),
  (2200, 1),
  (30, 1),
  (674, 1),
  (1318, 1),
  (220, 1),
  (1076, 1),
  (309, 1),
  (3009, 1),
  (3010, 1),
  (1224, 1),
  (461, 1),
  (602, 1),
  (476, 1),
  (2014, 1),
  (737, 1),
  (103, 1),
  (491, 1),
  (1008, 1),
  (754, 1),
  (1653, 1),
  (1147, 1)],
 [(1, 1),
  (2, 1),
  (900, 1),
  (13, 1),
  (1938, 1),
  (150, 1),
  (153, 1),
  (1348, 1),
  (1693, 1),
  (30, 1),
  (455, 1),
  (2803, 1),
  (1076, 1),
  (439, 1),
  (3011, 1),
  (3012, 1),
  (3013, 1),
  (3014, 1),
  (3015, 1),
  (3016, 1),
  (73, 1),
  (3018, 1),
  (3019, 1),
  (461, 1),
  (348, 1),
  (2910, 1),
  (1009, 1),
  (3017, 1),
  (499, 1),
  (123, 1)],
 [(928, 1),
  (1, 1),
  (330, 1),
  (3020, 1),
  (3021, 1),
  (1198, 1),
  (1490, 1),
  (2997, 1)],
 [(4, 1), (774, 1), (10, 1), (48, 1), (151, 1), (2730, 1)],
 [(1, 1),
  (2, 1),
  (773, 1),
  (1409, 1),
  (1544, 1),
  (1033, 1),
  (778, 1),
  (267, 1),
  (493, 1),
  (16, 1),
  (145, 1),
  (1554, 1),
  (917, 1),
  (23, 1),
  (2200, 1),
  (25, 1),
  (797, 1),
  (709, 1),
  (288, 1),
  (3035, 1),
  (3040, 1),
  (1830, 1),
  (295, 1),
  (296, 1),
  (182, 1),
  (55, 1),
  (3001, 1),
  (3039, 1),
  (61, 1),
  (62, 1),
  (1397, 1),
  (1952, 1),
  (1092, 1),
  (54, 1),
  (3030, 1),
  (1993, 1),
  (461, 1),
  (3022, 1),
  (3023, 1),
  (3024, 1),
  (3025, 1),
  (3026, 1),
  (3027, 1),
  (340, 1),
  (3029, 1),
  (342, 1),
  (3031, 1),
  (3032, 1),
  (3033, 1),
  (3034, 1),
  (1615, 1),
  (3036, 1),
  (3037, 1),
  (3038, 1),
  (1119, 1),
  (608, 1),
  (3041, 1),
  (3042, 1),
  (867, 1),
  (3044, 1),
  (3045, 1),
  (3046, 1),
  (872, 1),
  (234, 1),
  (2898, 1),
  (1312, 1),
  (339, 1),
  (117, 1),
  (3043, 1),
  (2168, 1),
  (3028, 1),
  (120, 1),
  (1791, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (3056, 1),
  (2566, 1),
  (654, 1),
  (16, 1),
  (146, 1),
  (22, 1),
  (2200, 1),
  (3055, 1),
  (797, 1),
  (1312, 1),
  (48, 1),
  (1444, 1),
  (262, 1),
  (294, 1),
  (304, 1),
  (499, 1),
  (2356, 1),
  (54, 1),
  (440, 1),
  (573, 1),
  (62, 1),
  (1397, 1),
  (1008, 1),
  (461, 1),
  (207, 1),
  (3028, 1),
  (342, 1),
  (1623, 1),
  (2649, 1),
  (602, 1),
  (3035, 1),
  (3036, 1),
  (182, 1),
  (867, 1),
  (1509, 1),
  (3047, 1),
  (3048, 1),
  (3049, 1),
  (3050, 1),
  (3051, 1),
  (3052, 1),
  (3053, 1),
  (3054, 1),
  (239, 1),
  (240, 1),
  (1011, 1),
  (245, 1),
  (631, 1),
  (234, 1),
  (106, 1)],
 [(1, 1),
  (2, 1),
  (2179, 1),
  (4, 1),
  (13, 1),
  (149, 1),
  (791, 1),
  (538, 1),
  (165, 1),
  (806, 1),
  (49, 1),
  (946, 1),
  (2491, 1),
  (335, 1),
  (2640, 1),
  (465, 1),
  (339, 1),
  (2774, 1),
  (2149, 1),
  (487, 1),
  (104, 1),
  (3057, 1),
  (3058, 1),
  (3059, 1),
  (3060, 1),
  (3061, 1),
  (3062, 1),
  (3063, 1),
  (405, 1)],
 [(1348, 1),
  (169, 1),
  (75, 1),
  (13, 1),
  (173, 1),
  (303, 1),
  (464, 1),
  (146, 1),
  (3064, 1),
  (708, 1),
  (988, 1),
  (557, 1),
  (4, 1)],
 [(3065, 1), (1, 1), (671, 1)],
 [(1, 1),
  (2, 1),
  (1699, 1),
  (4, 1),
  (583, 1),
  (1865, 1),
  (170, 1),
  (75, 1),
  (117, 1),
  (55, 1),
  (2008, 1),
  (25, 1),
  (3066, 1),
  (3067, 1),
  (3068, 1),
  (3069, 1),
  (62, 1)],
 [(3072, 1),
  (3073, 1),
  (3074, 1),
  (3, 1),
  (4, 1),
  (1285, 1),
  (3078, 1),
  (3079, 1),
  (3080, 1),
  (3081, 1),
  (3082, 1),
  (3083, 1),
  (3084, 1),
  (13, 1),
  (3086, 1),
  (143, 1),
  (3088, 1),
  (3075, 1),
  (20, 1),
  (150, 1),
  (23, 1),
  (3076, 1),
  (303, 1),
  (3077, 1),
  (1, 1),
  (550, 1),
  (3087, 1),
  (330, 1),
  (642, 1),
  (48, 1),
  (1032, 1),
  (50, 1),
  (1076, 1),
  (309, 1),
  (182, 1),
  (649, 1),
  (1225, 1),
  (827, 1),
  (151, 1),
  (317, 1),
  (565, 1),
  (1345, 1),
  (2, 1),
  (1035, 1),
  (583, 1),
  (1992, 1),
  (1097, 1),
  (2378, 1),
  (75, 1),
  (207, 1),
  (173, 1),
  (851, 1),
  (342, 1),
  (343, 1),
  (600, 1),
  (2575, 1),
  (1116, 1),
  (1507, 1),
  (101, 1),
  (234, 1),
  (3085, 1),
  (365, 1),
  (12, 1),
  (499, 1),
  (126, 1),
  (2429, 1),
  (3070, 1),
  (3071, 1)],
 [(1, 1),
  (2, 1),
  (3094, 1),
  (263, 1),
  (1544, 1),
  (1035, 1),
  (12, 1),
  (13, 1),
  (142, 1),
  (3089, 1),
  (3090, 1),
  (3091, 1),
  (3092, 1),
  (661, 1),
  (73, 1),
  (23, 1),
  (24, 1),
  (286, 1),
  (1312, 1),
  (36, 1),
  (808, 1),
  (170, 1),
  (173, 1),
  (1455, 1),
  (2865, 1),
  (1206, 1),
  (55, 1),
  (187, 1),
  (573, 1),
  (62, 1),
  (54, 1),
  (2956, 1),
  (75, 1),
  (976, 1),
  (14, 1),
  (1620, 1),
  (1422, 1),
  (3093, 1),
  (983, 1),
  (1368, 1),
  (90, 1),
  (988, 1),
  (94, 1),
  (99, 1),
  (100, 1),
  (2664, 1),
  (61, 1),
  (497, 1),
  (754, 1),
  (1011, 1),
  (117, 1),
  (340, 1),
  (762, 1),
  (383, 1)],
 [(1, 1),
  (2, 1),
  (2819, 1),
  (900, 1),
  (645, 1),
  (1926, 1),
  (264, 1),
  (649, 1),
  (317, 1),
  (2575, 1),
  (24, 1),
  (146, 1),
  (403, 1),
  (917, 1),
  (150, 1),
  (3095, 1),
  (3096, 1),
  (3097, 1),
  (3098, 1),
  (3099, 1),
  (3100, 1),
  (3101, 1),
  (30, 1),
  (3103, 1),
  (3104, 1),
  (33, 1),
  (3106, 1),
  (3107, 1),
  (3108, 1),
  (3109, 1),
  (424, 1),
  (2345, 1),
  (309, 1),
  (182, 1),
  (55, 1),
  (61, 1),
  (2555, 1),
  (1987, 1),
  (3105, 1),
  (2502, 1),
  (583, 1),
  (73, 1),
  (330, 1),
  (75, 1),
  (2258, 1),
  (341, 1),
  (2008, 1),
  (93, 1),
  (608, 1),
  (1915, 1),
  (1254, 1),
  (3102, 1),
  (1005, 1),
  (573, 1),
  (116, 1),
  (379, 1),
  (981, 1)],
 [(3074, 1),
  (4, 1),
  (3030, 1),
  (3078, 1),
  (264, 1),
  (2, 1),
  (403, 1),
  (1044, 1),
  (670, 1),
  (1776, 1),
  (3110, 1),
  (1319, 1),
  (3112, 1),
  (169, 1),
  (3114, 1),
  (60, 1),
  (642, 1),
  (600, 1),
  (3111, 1),
  (2928, 1),
  (1011, 1),
  (3113, 1),
  (1530, 1)],
 [(128, 1),
  (3074, 1),
  (3075, 1),
  (645, 1),
  (267, 1),
  (268, 1),
  (13, 1),
  (142, 1),
  (911, 1),
  (1298, 1),
  (915, 1),
  (1198, 1),
  (150, 1),
  (25, 1),
  (1306, 1),
  (30, 1),
  (197, 1),
  (2848, 1),
  (3120, 1),
  (2596, 1),
  (1829, 1),
  (3110, 1),
  (3111, 1),
  (810, 1),
  (3115, 1),
  (3116, 1),
  (3117, 1),
  (3118, 1),
  (3119, 1),
  (176, 1),
  (3121, 1),
  (50, 1),
  (314, 1),
  (61, 1),
  (637, 1),
  (576, 1),
  (2, 1),
  (3122, 1),
  (2501, 1),
  (75, 1),
  (1677, 1),
  (2002, 1),
  (84, 1),
  (341, 1),
  (642, 1),
  (164, 1),
  (1120, 1),
  (1586, 1),
  (939, 1),
  (550, 1),
  (106, 1),
  (722, 1),
  (239, 1),
  (403, 1),
  (1012, 1),
  (1073, 1),
  (509, 1)],
 [(2656, 1),
  (512, 1),
  (2, 1),
  (2537, 1),
  (4, 1),
  (37, 1),
  (1, 1),
  (73, 1),
  (10, 1),
  (140, 1),
  (13, 1),
  (367, 1),
  (529, 1),
  (754, 1),
  (147, 1),
  (545, 1),
  (342, 1),
  (759, 1),
  (858, 1),
  (187, 1),
  (188, 1)],
 [(4, 1),
  (133, 1),
  (262, 1),
  (268, 1),
  (435, 1),
  (912, 1),
  (150, 1),
  (23, 1),
  (25, 1),
  (30, 1),
  (2725, 1),
  (2855, 1),
  (2012, 1),
  (816, 1),
  (50, 1),
  (3123, 1),
  (3124, 1),
  (3125, 1),
  (3126, 1),
  (3127, 1),
  (3128, 1),
  (185, 1),
  (3130, 1),
  (3131, 1),
  (3132, 1),
  (3133, 1),
  (3134, 1),
  (1973, 1),
  (3136, 1),
  (3137, 1),
  (3138, 1),
  (3139, 1),
  (73, 1),
  (330, 1),
  (1483, 1),
  (1490, 1),
  (977, 1),
  (722, 1),
  (341, 1),
  (2462, 1),
  (3129, 1),
  (1116, 1),
  (2656, 1),
  (80, 1),
  (483, 1),
  (2407, 1),
  (2793, 1),
  (877, 1),
  (623, 1),
  (3135, 1),
  (2101, 1)],
 [(128, 1),
  (1281, 1),
  (4, 1),
  (13, 1),
  (150, 1),
  (1348, 1),
  (2844, 1),
  (30, 1),
  (33, 1),
  (35, 1),
  (3142, 1),
  (550, 1),
  (3143, 1),
  (48, 1),
  (1206, 1),
  (184, 1),
  (60, 1),
  (3147, 1),
  (3140, 1),
  (3141, 1),
  (70, 1),
  (455, 1),
  (3144, 1),
  (3145, 1),
  (3146, 1),
  (631, 1),
  (269, 1),
  (602, 1),
  (1119, 1),
  (2024, 1),
  (1001, 1),
  (106, 1),
  (2923, 1),
  (239, 1),
  (246, 1),
  (1399, 1),
  (124, 1),
  (125, 1)],
 [(1, 1),
  (4, 1),
  (133, 1),
  (13, 1),
  (1133, 1),
  (150, 1),
  (288, 1),
  (48, 1),
  (939, 1),
  (176, 1),
  (60, 1),
  (449, 1),
  (73, 1),
  (3148, 1),
  (3149, 1),
  (3150, 1),
  (207, 1),
  (213, 1),
  (217, 1),
  (858, 1),
  (2656, 1),
  (483, 1),
  (365, 1),
  (1647, 1),
  (245, 1),
  (759, 1)],
 [(4, 1),
  (140, 1),
  (10, 1),
  (492, 1),
  (1004, 1),
  (2574, 1),
  (3151, 1),
  (3152, 1),
  (654, 1),
  (150, 1),
  (1146, 1),
  (557, 1)],
 [(4, 1),
  (3153, 1),
  (2088, 1),
  (73, 1),
  (13, 1),
  (46, 1),
  (1073, 1),
  (50, 1),
  (3155, 1),
  (3156, 1),
  (150, 1),
  (3154, 1),
  (2973, 1),
  (2654, 1)],
 [(128, 1),
  (1, 1),
  (133, 1),
  (10, 1),
  (140, 1),
  (16, 1),
  (150, 1),
  (151, 1),
  (30, 1),
  (42, 1),
  (182, 1),
  (185, 1),
  (188, 1),
  (73, 1),
  (330, 1),
  (207, 1),
  (80, 1),
  (1489, 1),
  (3154, 1),
  (341, 1),
  (463, 1),
  (877, 1),
  (120, 1),
  (2301, 1),
  (3157, 1)],
 [(128, 1),
  (2, 1),
  (4, 1),
  (262, 1),
  (16, 1),
  (529, 1),
  (150, 1),
  (239, 1),
  (2978, 1),
  (931, 1),
  (1830, 1),
  (42, 1),
  (2776, 1),
  (690, 1),
  (1331, 1),
  (180, 1),
  (1206, 1),
  (1076, 1),
  (317, 1),
  (2367, 1),
  (80, 1),
  (1489, 1),
  (3156, 1),
  (3158, 1),
  (3159, 1),
  (3160, 1),
  (3161, 1),
  (3162, 1),
  (3163, 1),
  (3164, 1),
  (3165, 1),
  (3166, 1),
  (2656, 1),
  (528, 1),
  (869, 1),
  (362, 1),
  (1004, 1),
  (1647, 1),
  (240, 1),
  (499, 1),
  (884, 1),
  (1397, 1),
  (759, 1),
  (122, 1),
  (123, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (2597, 1),
  (902, 1),
  (1505, 1),
  (968, 1),
  (73, 1),
  (343, 1),
  (204, 1),
  (878, 1),
  (143, 1),
  (1751, 1),
  (153, 1),
  (858, 1),
  (1983, 1),
  (92, 1),
  (3167, 1)],
 [(128, 1),
  (4, 1),
  (2572, 1),
  (30, 1),
  (169, 1),
  (48, 1),
  (2481, 1),
  (1089, 1),
  (3142, 1),
  (73, 1),
  (330, 1),
  (719, 1),
  (1497, 1),
  (858, 1),
  (482, 1),
  (1382, 1),
  (1642, 1),
  (1131, 1),
  (368, 1),
  (244, 1),
  (123, 1),
  (2175, 1)],
 [(1, 1),
  (1154, 1),
  (1027, 1),
  (770, 1),
  (16, 1),
  (20, 1),
  (1686, 1),
  (24, 1),
  (29, 1),
  (30, 1),
  (35, 1),
  (1572, 1),
  (37, 1),
  (183, 1),
  (2857, 1),
  (42, 1),
  (3114, 1),
  (55, 1),
  (1382, 1),
  (1604, 1),
  (1867, 1),
  (3170, 1),
  (1123, 1),
  (342, 1),
  (600, 1),
  (858, 1),
  (347, 1),
  (2398, 1),
  (479, 1),
  (3168, 1),
  (3169, 1),
  (482, 1),
  (3171, 1),
  (3172, 1),
  (3173, 1),
  (3174, 1),
  (103, 1),
  (106, 1),
  (3175, 1),
  (1389, 1),
  (754, 1),
  (123, 1),
  (1276, 1),
  (362, 1),
  (767, 1)],
 [(1, 1),
  (4, 1),
  (776, 1),
  (492, 1),
  (13, 1),
  (35, 1),
  (36, 1),
  (37, 1),
  (1455, 1),
  (61, 1),
  (321, 1),
  (834, 1),
  (971, 1),
  (459, 1),
  (205, 1),
  (718, 1),
  (207, 1),
  (976, 1),
  (465, 1),
  (858, 1),
  (3176, 1),
  (3177, 1),
  (3178, 1),
  (1004, 1),
  (497, 1),
  (119, 1),
  (123, 1),
  (383, 1)],
 [(128, 1),
  (1, 1),
  (4, 1),
  (2182, 1),
  (492, 1),
  (13, 1),
  (910, 1),
  (15, 1),
  (23, 1),
  (30, 1),
  (1572, 1),
  (37, 1),
  (1318, 1),
  (169, 1),
  (2349, 1),
  (48, 1),
  (1846, 1),
  (55, 1),
  (3188, 1),
  (1850, 1),
  (60, 1),
  (446, 1),
  (704, 1),
  (708, 1),
  (185, 1),
  (585, 1),
  (1482, 1),
  (1483, 1),
  (2125, 1),
  (1998, 1),
  (1615, 1),
  (1465, 1),
  (858, 1),
  (3191, 1),
  (2746, 1),
  (479, 1),
  (482, 1),
  (484, 1),
  (1125, 1),
  (3179, 1),
  (3180, 1),
  (3181, 1),
  (3182, 1),
  (3183, 1),
  (3184, 1),
  (3185, 1),
  (3186, 1),
  (3187, 1),
  (244, 1),
  (3189, 1),
  (3190, 1),
  (119, 1),
  (2943, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (1092, 1),
  (3141, 1),
  (33, 1),
  (140, 1),
  (1678, 1),
  (239, 1),
  (3192, 1),
  (600, 1),
  (602, 1),
  (2844, 1)],
 [(288, 1),
  (1, 1),
  (99, 1),
  (293, 1),
  (2502, 1),
  (616, 1),
  (41, 1),
  (1998, 1),
  (123, 1),
  (213, 1),
  (150, 1),
  (3193, 1),
  (795, 1),
  (446, 1),
  (229, 1)],
 [(3200, 1),
  (769, 1),
  (3202, 1),
  (3201, 1),
  (23, 1),
  (2962, 1),
  (917, 1),
  (151, 1),
  (543, 1),
  (169, 1),
  (1708, 1),
  (370, 1),
  (942, 1),
  (48, 1),
  (180, 1),
  (60, 1),
  (317, 1),
  (446, 1),
  (1343, 1),
  (1865, 1),
  (848, 1),
  (342, 1),
  (599, 1),
  (218, 1),
  (3195, 1),
  (1132, 1),
  (754, 1),
  (758, 1),
  (631, 1),
  (3194, 1),
  (123, 1),
  (3196, 1),
  (3197, 1),
  (3198, 1),
  (3199, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (3203, 1),
  (3204, 1),
  (3205, 1),
  (3206, 1),
  (3207, 1),
  (3208, 1),
  (3209, 1),
  (3210, 1),
  (3211, 1),
  (3212, 1),
  (13, 1),
  (2702, 1),
  (528, 1),
  (887, 1),
  (150, 1),
  (537, 1),
  (4, 1),
  (26, 1),
  (538, 1),
  (545, 1),
  (1446, 1),
  (1193, 1),
  (42, 1),
  (172, 1),
  (302, 1),
  (48, 1),
  (180, 1),
  (3003, 1),
  (2238, 1),
  (666, 1),
  (1088, 1),
  (1604, 1),
  (3143, 1),
  (1483, 1),
  (3022, 1),
  (848, 1),
  (469, 1),
  (214, 1),
  (343, 1),
  (2014, 1),
  (187, 1),
  (100, 1),
  (234, 1),
  (364, 1),
  (752, 1),
  (1777, 1),
  (1266, 1),
  (499, 1),
  (169, 1),
  (121, 1),
  (894, 1)],
 [(1, 1),
  (10, 1),
  (12, 1),
  (3213, 1),
  (3214, 1),
  (3215, 1),
  (3216, 1),
  (3217, 1),
  (3218, 1),
  (3219, 1),
  (3220, 1),
  (3221, 1),
  (150, 1),
  (932, 1),
  (1318, 1),
  (48, 1),
  (182, 1),
  (183, 1),
  (838, 1),
  (1399, 1),
  (397, 1),
  (82, 1),
  (599, 1),
  (218, 1),
  (3190, 1),
  (631, 1),
  (121, 1)],
 [(1, 1),
  (388, 1),
  (150, 1),
  (385, 1),
  (138, 1),
  (1677, 1),
  (21, 1),
  (3222, 1),
  (3223, 1),
  (3224, 1),
  (1435, 1),
  (157, 1),
  (2096, 1),
  (1318, 1),
  (169, 1),
  (682, 1),
  (173, 1),
  (2095, 1),
  (48, 1),
  (306, 1),
  (1206, 1),
  (567, 1),
  (449, 1),
  (1092, 1),
  (709, 1),
  (3143, 1),
  (841, 1),
  (1358, 1),
  (13, 1),
  (599, 1),
  (473, 1),
  (463, 1),
  (101, 1),
  (487, 1),
  (1902, 1),
  (121, 1),
  (127, 1),
  (383, 1)],
 [(4, 1),
  (264, 1),
  (3217, 1),
  (3225, 1),
  (3226, 1),
  (3227, 1),
  (3228, 1),
  (3229, 1),
  (3230, 1),
  (3231, 1),
  (3232, 1),
  (3233, 1),
  (3234, 1),
  (157, 1),
  (182, 1),
  (317, 1),
  (327, 1),
  (463, 1),
  (1749, 1),
  (94, 1),
  (483, 1),
  (238, 1),
  (114, 1),
  (1911, 1)],
 [(1, 1),
  (2, 1),
  (520, 1),
  (267, 1),
  (2317, 1),
  (147, 1),
  (917, 1),
  (24, 1),
  (26, 1),
  (284, 1),
  (30, 1),
  (2208, 1),
  (3235, 1),
  (3236, 1),
  (3237, 1),
  (3238, 1),
  (169, 1),
  (172, 1),
  (1454, 1),
  (48, 1),
  (1073, 1),
  (182, 1),
  (571, 1),
  (444, 1),
  (449, 1),
  (581, 1),
  (3143, 1),
  (73, 1),
  (330, 1),
  (465, 1),
  (722, 1),
  (2516, 1),
  (725, 1),
  (932, 1),
  (479, 1),
  (96, 1),
  (187, 1),
  (1254, 1),
  (1768, 1),
  (234, 1),
  (499, 1),
  (245, 1),
  (1017, 1),
  (2301, 1)],
 [(1, 1),
  (867, 1),
  (48, 1),
  (16, 1),
  (3239, 1),
  (3240, 1),
  (3241, 1),
  (74, 1),
  (3243, 1),
  (3244, 1),
  (1677, 1),
  (77, 1),
  (368, 1),
  (178, 1),
  (182, 1),
  (3242, 1),
  (123, 1),
  (42, 1)],
 [(1152, 1),
  (1, 1),
  (708, 1),
  (7, 1),
  (169, 1),
  (1740, 1),
  (3245, 1),
  (3246, 1),
  (3247, 1),
  (3248, 1),
  (3249, 1),
  (1973, 1),
  (182, 1),
  (2039, 1),
  (1080, 1),
  (1435, 1),
  (73, 1)],
 [(1, 1),
  (2, 1),
  (388, 1),
  (529, 1),
  (150, 1),
  (24, 1),
  (4, 1),
  (538, 1),
  (30, 1),
  (3253, 1),
  (932, 1),
  (1830, 1),
  (3250, 1),
  (3251, 1),
  (3252, 1),
  (3230, 1),
  (182, 1),
  (187, 1),
  (1852, 1),
  (74, 1),
  (1397, 1),
  (3254, 1),
  (73, 1),
  (330, 1),
  (1483, 1),
  (599, 1),
  (1008, 1),
  (3217, 1),
  (316, 1),
  (240, 1),
  (499, 1),
  (116, 1),
  (245, 1),
  (105, 1),
  (2301, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (774, 1),
  (140, 1),
  (13, 1),
  (16, 1),
  (24, 1),
  (20, 1),
  (1262, 1),
  (280, 1),
  (25, 1),
  (29, 1),
  (30, 1),
  (48, 1),
  (36, 1),
  (550, 1),
  (2857, 1),
  (1452, 1),
  (1361, 1),
  (432, 1),
  (1201, 1),
  (1330, 1),
  (54, 1),
  (3255, 1),
  (3256, 1),
  (573, 1),
  (1092, 1),
  (70, 1),
  (55, 1),
  (1016, 1),
  (2899, 1),
  (214, 1),
  (608, 1),
  (487, 1),
  (1902, 1),
  (239, 1),
  (244, 1),
  (246, 1),
  (120, 1)],
 [(1, 1),
  (2, 1),
  (1032, 1),
  (13, 1),
  (1552, 1),
  (529, 1),
  (24, 1),
  (25, 1),
  (30, 1),
  (2090, 1),
  (2095, 1),
  (565, 1),
  (55, 1),
  (2621, 1),
  (62, 1),
  (3143, 1),
  (1097, 1),
  (2124, 1),
  (78, 1),
  (1615, 1),
  (99, 1),
  (616, 1),
  (1132, 1),
  (121, 1),
  (123, 1),
  (125, 1),
  (143, 1),
  (3217, 1),
  (149, 1),
  (153, 1),
  (666, 1),
  (1693, 1),
  (677, 1),
  (169, 1),
  (687, 1),
  (176, 1),
  (691, 1),
  (182, 1),
  (3257, 1),
  (3258, 1),
  (3259, 1),
  (3260, 1),
  (3261, 1),
  (3262, 1),
  (3263, 1),
  (3264, 1),
  (3265, 1),
  (3266, 1),
  (3267, 1),
  (3268, 1),
  (3269, 1),
  (3270, 1),
  (3271, 1),
  (3272, 1),
  (3273, 1),
  (3274, 1),
  (3275, 1),
  (3276, 1),
  (3277, 1),
  (3278, 1),
  (207, 1),
  (3280, 1),
  (3281, 1),
  (3282, 1),
  (3283, 1),
  (3284, 1),
  (206, 1),
  (3286, 1),
  (3287, 1),
  (3288, 1),
  (3279, 1),
  (754, 1),
  (2803, 1),
  (1277, 1),
  (1749, 1),
  (262, 1),
  (1287, 1),
  (286, 1),
  (799, 1),
  (800, 1),
  (1318, 1),
  (298, 1),
  (304, 1),
  (2356, 1),
  (2870, 1),
  (314, 1),
  (1862, 1),
  (841, 1),
  (1358, 1),
  (342, 1),
  (1338, 1),
  (3285, 1),
  (867, 1),
  (362, 1),
  (1911, 1),
  (1405, 1),
  (905, 1),
  (1443, 1),
  (73, 1),
  (3003, 1),
  (446, 1),
  (463, 1),
  (499, 1),
  (2039, 1)],
 [(321, 1),
  (932, 1),
  (518, 1),
  (1, 1),
  (233, 1),
  (204, 1),
  (13, 1),
  (976, 1),
  (600, 1),
  (754, 1),
  (119, 1),
  (2264, 1),
  (3289, 1)],
 [(1, 1),
  (3, 1),
  (1158, 1),
  (264, 1),
  (169, 1),
  (234, 1),
  (1393, 1),
  (150, 1),
  (599, 1),
  (184, 1),
  (26, 1),
  (1435, 1),
  (10, 1),
  (3230, 1)],
 [(128, 1),
  (1, 1),
  (1156, 1),
  (3222, 1),
  (1158, 1),
  (1516, 1),
  (13, 1),
  (146, 1),
  (149, 1),
  (150, 1),
  (26, 1),
  (283, 1),
  (156, 1),
  (157, 1),
  (3232, 1),
  (176, 1),
  (675, 1),
  (602, 1),
  (37, 1),
  (41, 1),
  (298, 1),
  (1708, 1),
  (2857, 1),
  (93, 1),
  (48, 1),
  (562, 1),
  (435, 1),
  (309, 1),
  (182, 1),
  (55, 1),
  (3003, 1),
  (1212, 1),
  (61, 1),
  (169, 1),
  (319, 1),
  (576, 1),
  (1814, 1),
  (196, 1),
  (2757, 1),
  (2502, 1),
  (3143, 1),
  (1096, 1),
  (73, 1),
  (74, 1),
  (203, 1),
  (1890, 1),
  (2637, 1),
  (848, 1),
  (1362, 1),
  (979, 1),
  (214, 1),
  (315, 1),
  (88, 1),
  (3300, 1),
  (3290, 1),
  (3291, 1),
  (3292, 1),
  (3293, 1),
  (3294, 1),
  (3295, 1),
  (3296, 1),
  (3297, 1),
  (3298, 1),
  (3299, 1),
  (2404, 1),
  (3301, 1),
  (3302, 1),
  (3303, 1),
  (3304, 1),
  (3305, 1),
  (3306, 1),
  (1900, 1),
  (754, 1),
  (830, 1),
  (119, 1),
  (1272, 1),
  (1193, 1),
  (634, 1)],
 [(128, 1),
  (1, 1),
  (537, 1),
  (5, 1),
  (601, 1),
  (2305, 1),
  (136, 1),
  (1132, 1),
  (267, 1),
  (13, 1),
  (2958, 1),
  (1133, 1),
  (1536, 1),
  (3217, 1),
  (146, 1),
  (2067, 1),
  (150, 1),
  (151, 1),
  (25, 1),
  (26, 1),
  (928, 1),
  (116, 1),
  (3234, 1),
  (932, 1),
  (1318, 1),
  (808, 1),
  (3241, 1),
  (3242, 1),
  (3314, 1),
  (48, 1),
  (1201, 1),
  (50, 1),
  (180, 1),
  (2398, 1),
  (182, 1),
  (55, 1),
  (2802, 1),
  (3003, 1),
  (1852, 1),
  (317, 1),
  (3058, 1),
  (323, 1),
  (196, 1),
  (2102, 1),
  (3143, 1),
  (972, 1),
  (207, 1),
  (342, 1),
  (88, 1),
  (473, 1),
  (94, 1),
  (223, 1),
  (482, 1),
  (999, 1),
  (60, 1),
  (3307, 1),
  (3308, 1),
  (3309, 1),
  (3310, 1),
  (3311, 1),
  (3312, 1),
  (3313, 1),
  (114, 1),
  (3315, 1),
  (3316, 1),
  (3317, 1),
  (3318, 1),
  (673, 1),
  (126, 1)],
 [(1, 1),
  (4, 1),
  (23, 1),
  (536, 1),
  (29, 1),
  (30, 1),
  (33, 1),
  (36, 1),
  (42, 1),
  (3126, 1),
  (61, 1),
  (1599, 1),
  (3138, 1),
  (1803, 1),
  (3143, 1),
  (73, 1),
  (74, 1),
  (599, 1),
  (602, 1),
  (93, 1),
  (94, 1),
  (143, 1),
  (150, 1),
  (157, 1),
  (670, 1),
  (2728, 1),
  (169, 1),
  (182, 1),
  (1207, 1),
  (699, 1),
  (204, 1),
  (207, 1),
  (2268, 1),
  (1758, 1),
  (240, 1),
  (246, 1),
  (3319, 1),
  (3320, 1),
  (3321, 1),
  (3322, 1),
  (1275, 1),
  (3324, 1),
  (3325, 1),
  (1278, 1),
  (3327, 1),
  (3328, 1),
  (3329, 1),
  (3330, 1),
  (3331, 1),
  (3332, 1),
  (3333, 1),
  (3334, 1),
  (3335, 1),
  (3336, 1),
  (3337, 1),
  (3338, 1),
  (3339, 1),
  (3340, 1),
  (3341, 1),
  (788, 1),
  (1814, 1),
  (286, 1),
  (291, 1),
  (222, 1),
  (330, 1),
  (397, 1),
  (338, 1),
  (862, 1),
  (1381, 1),
  (1901, 1),
  (1393, 1),
  (1408, 1),
  (900, 1),
  (903, 1),
  (1419, 1),
  (1421, 1),
  (2962, 1),
  (930, 1),
  (1961, 1),
  (444, 1),
  (968, 1),
  (461, 1),
  (977, 1),
  (2008, 1),
  (482, 1),
  (3323, 1),
  (2024, 1),
  (492, 1),
  (2541, 1),
  (499, 1),
  (3326, 1)],
 [(1281, 1),
  (932, 1),
  (74, 1),
  (103, 1),
  (649, 1),
  (73, 1),
  (234, 1),
  (3345, 1),
  (3342, 1),
  (3343, 1),
  (3344, 1),
  (465, 1),
  (3346, 1),
  (244, 1),
  (1911, 1),
  (4, 1),
  (26, 1),
  (283, 1),
  (3325, 1),
  (3301, 1)],
 [(1, 1),
  (3350, 1),
  (2563, 1),
  (4, 1),
  (1814, 1),
  (522, 1),
  (395, 1),
  (1548, 1),
  (1293, 1),
  (3217, 1),
  (146, 1),
  (3347, 1),
  (3348, 1),
  (3349, 1),
  (150, 1),
  (3351, 1),
  (24, 1),
  (3353, 1),
  (26, 1),
  (3355, 1),
  (3356, 1),
  (157, 1),
  (3230, 1),
  (672, 1),
  (538, 1),
  (164, 1),
  (39, 1),
  (1193, 1),
  (1708, 1),
  (3245, 1),
  (3357, 1),
  (176, 1),
  (1911, 1),
  (30, 1),
  (182, 1),
  (1865, 1),
  (1336, 1),
  (3241, 1),
  (60, 1),
  (61, 1),
  (3352, 1),
  (36, 1),
  (1089, 1),
  (834, 1),
  (267, 1),
  (2102, 1),
  (3143, 1),
  (73, 1),
  (119, 1),
  (13, 1),
  (80, 1),
  (2131, 1),
  (2260, 1),
  (2901, 1),
  (342, 1),
  (599, 1),
  (100, 1),
  (297, 1),
  (222, 1),
  (3, 1),
  (737, 1),
  (3358, 1),
  (484, 1),
  (869, 1),
  (2152, 1),
  (2761, 1),
  (491, 1),
  (1005, 1),
  (2877, 1),
  (1266, 1),
  (1176, 1),
  (759, 1),
  (340, 1),
  (3354, 1),
  (2813, 1),
  (1749, 1)],
 [(4, 1),
  (1174, 1),
  (13, 1),
  (144, 1),
  (1810, 1),
  (1814, 1),
  (410, 1),
  (3375, 1),
  (26, 1),
  (3359, 1),
  (3360, 1),
  (3361, 1),
  (3362, 1),
  (3363, 1),
  (3364, 1),
  (3365, 1),
  (3366, 1),
  (3367, 1),
  (2216, 1),
  (3369, 1),
  (3370, 1),
  (3371, 1),
  (3372, 1),
  (3373, 1),
  (3374, 1),
  (175, 1),
  (48, 1),
  (562, 1),
  (417, 1),
  (2103, 1),
  (60, 1),
  (61, 1),
  (3139, 1),
  (71, 1),
  (74, 1),
  (77, 1),
  (78, 1),
  (88, 1),
  (2084, 1),
  (1887, 1),
  (50, 1),
  (484, 1),
  (1125, 1),
  (362, 1),
  (619, 1),
  (1903, 1),
  (240, 1),
  (3368, 1),
  (626, 1),
  (756, 1),
  (106, 1),
  (1911, 1),
  (1401, 1),
  (1130, 1)],
 [(128, 1),
  (1, 1),
  (2434, 1),
  (2437, 1),
  (519, 1),
  (649, 1),
  (267, 1),
  (13, 1),
  (2702, 1),
  (2066, 1),
  (788, 1),
  (150, 1),
  (791, 1),
  (2073, 1),
  (26, 1),
  (1051, 1),
  (30, 1),
  (214, 1),
  (816, 1),
  (932, 1),
  (2597, 1),
  (41, 1),
  (298, 1),
  (71, 1),
  (3373, 1),
  (3376, 1),
  (3377, 1),
  (3378, 1),
  (3379, 1),
  (3380, 1),
  (3381, 1),
  (182, 1),
  (55, 1),
  (1908, 1),
  (151, 1),
  (573, 1),
  (2, 1),
  (1348, 1),
  (3382, 1),
  (2502, 1),
  (967, 1),
  (74, 1),
  (183, 1),
  (76, 1),
  (718, 1),
  (1615, 1),
  (720, 1),
  (1106, 1),
  (1891, 1),
  (340, 1),
  (78, 1),
  (342, 1),
  (975, 1),
  (1678, 1),
  (1381, 1),
  (3383, 1),
  (61, 1),
  (867, 1),
  (100, 1),
  (869, 1),
  (103, 1),
  (2024, 1),
  (362, 1),
  (512, 1),
  (1780, 1),
  (169, 1),
  (248, 1),
  (762, 1),
  (123, 1),
  (253, 1),
  (126, 1)],
 [(1504, 1),
  (2, 1),
  (2179, 1),
  (4, 1),
  (37, 1),
  (967, 1),
  (876, 1),
  (237, 1),
  (527, 1),
  (48, 1),
  (280, 1),
  (182, 1),
  (3384, 1),
  (3385, 1),
  (3386, 1),
  (239, 1),
  (2844, 1),
  (446, 1)],
 [(1410, 1),
  (1345, 1),
  (3410, 1),
  (13, 1),
  (142, 1),
  (2575, 1),
  (144, 1),
  (273, 1),
  (1426, 1),
  (788, 1),
  (2511, 1),
  (2071, 1),
  (1115, 1),
  (3412, 1),
  (30, 1),
  (801, 1),
  (1371, 1),
  (932, 1),
  (294, 1),
  (551, 1),
  (2088, 1),
  (1193, 1),
  (170, 1),
  (1452, 1),
  (3404, 1),
  (303, 1),
  (2994, 1),
  (1076, 1),
  (329, 1),
  (3387, 1),
  (3388, 1),
  (3389, 1),
  (3390, 1),
  (3391, 1),
  (3392, 1),
  (3393, 1),
  (3394, 1),
  (3395, 1),
  (3396, 1),
  (3397, 1),
  (3398, 1),
  (3399, 1),
  (3400, 1),
  (3401, 1),
  (3402, 1),
  (3403, 1),
  (2636, 1),
  (3405, 1),
  (3406, 1),
  (975, 1),
  (2989, 1),
  (3409, 1),
  (210, 1),
  (3411, 1),
  (2644, 1),
  (1678, 1),
  (982, 1),
  (2648, 1),
  (753, 1),
  (2702, 1),
  (1376, 1),
  (3041, 1),
  (483, 1),
  (996, 1),
  (2021, 1),
  (3413, 1),
  (1896, 1),
  (60, 1),
  (1130, 1),
  (1132, 1),
  (850, 1),
  (2928, 1),
  (1393, 1),
  (140, 1),
  (382, 1),
  (980, 1),
  (3408, 1),
  (3407, 1),
  (2431, 1)],
 [(128, 1),
  (1, 1),
  (4, 1),
  (2182, 1),
  (903, 1),
  (520, 1),
  (13, 1),
  (2579, 1),
  (20, 1),
  (26, 1),
  (55, 1),
  (1339, 1),
  (316, 1),
  (573, 1),
  (321, 1),
  (1348, 1),
  (463, 1),
  (82, 1),
  (3414, 1),
  (3415, 1),
  (3416, 1),
  (3417, 1),
  (445, 1),
  (244, 1),
  (246, 1)],
 [(1, 1),
  (3, 1),
  (388, 1),
  (1797, 1),
  (10, 1),
  (140, 1),
  (13, 1),
  (150, 1),
  (4, 1),
  (670, 1),
  (288, 1),
  (33, 1),
  (1116, 1),
  (3372, 1),
  (477, 1),
  (48, 1),
  (1073, 1),
  (50, 1),
  (180, 1),
  (94, 1),
  (1338, 1),
  (60, 1),
  (1345, 1),
  (3138, 1),
  (196, 1),
  (455, 1),
  (1865, 1),
  (1100, 1),
  (3427, 1),
  (2398, 1),
  (3418, 1),
  (3419, 1),
  (3420, 1),
  (3421, 1),
  (3422, 1),
  (3423, 1),
  (3424, 1),
  (3425, 1),
  (3426, 1),
  (99, 1),
  (3428, 1),
  (2284, 1),
  (114, 1),
  (755, 1),
  (123, 1),
  (382, 1)],
 [(1, 1),
  (2, 1),
  (515, 1),
  (4, 1),
  (13, 1),
  (21, 1),
  (24, 1),
  (2073, 1),
  (30, 1),
  (1055, 1),
  (1570, 1),
  (41, 1),
  (48, 1),
  (2102, 1),
  (2103, 1),
  (60, 1),
  (573, 1),
  (74, 1),
  (2637, 1),
  (2061, 1),
  (81, 1),
  (1116, 1),
  (610, 1),
  (100, 1),
  (103, 1),
  (106, 1),
  (119, 1),
  (3434, 1),
  (126, 1),
  (128, 1),
  (139, 1),
  (1678, 1),
  (144, 1),
  (146, 1),
  (149, 1),
  (150, 1),
  (153, 1),
  (2869, 1),
  (675, 1),
  (176, 1),
  (187, 1),
  (195, 1),
  (709, 1),
  (1737, 1),
  (887, 1),
  (1058, 1),
  (738, 1),
  (1768, 1),
  (2284, 1),
  (754, 1),
  (1780, 1),
  (248, 1),
  (3456, 1),
  (1794, 1),
  (1797, 1),
  (262, 1),
  (267, 1),
  (3459, 1),
  (1300, 1),
  (3461, 1),
  (293, 1),
  (3368, 1),
  (2857, 1),
  (811, 1),
  (815, 1),
  (3464, 1),
  (309, 1),
  (3383, 1),
  (319, 1),
  (1864, 1),
  (330, 1),
  (55, 1),
  (859, 1),
  (2398, 1),
  (3429, 1),
  (3430, 1),
  (3431, 1),
  (3432, 1),
  (3433, 1),
  (1898, 1),
  (3435, 1),
  (3436, 1),
  (3437, 1),
  (3438, 1),
  (3439, 1),
  (3440, 1),
  (3441, 1),
  (3442, 1),
  (3443, 1),
  (3444, 1),
  (3445, 1),
  (3446, 1),
  (3447, 1),
  (3448, 1),
  (3449, 1),
  (3450, 1),
  (3451, 1),
  (3452, 1),
  (3453, 1),
  (3454, 1),
  (3455, 1),
  (384, 1),
  (3457, 1),
  (3458, 1),
  (1923, 1),
  (3460, 1),
  (2437, 1),
  (3462, 1),
  (3463, 1),
  (904, 1),
  (2954, 1),
  (410, 1),
  (1435, 1),
  (1447, 1),
  (443, 1),
  (586, 1),
  (455, 1),
  (2001, 1),
  (473, 1),
  (1615, 1),
  (996, 1),
  (2024, 1),
  (1005, 1),
  (509, 1)],
 [(3465, 1),
  (3466, 1),
  (3467, 1),
  (3468, 1),
  (3469, 1),
  (3470, 1),
  (911, 1),
  (1693, 1),
  (30, 1),
  (2338, 1),
  (2087, 1),
  (681, 1),
  (3114, 1),
  (1327, 1),
  (180, 1),
  (1087, 1),
  (908, 1),
  (1615, 1),
  (3157, 1),
  (3471, 1),
  (1633, 1),
  (484, 1),
  (117, 1),
  (2423, 1),
  (2168, 1)],
 [(1, 1),
  (290, 1),
  (2779, 1),
  (1956, 1),
  (1512, 1),
  (937, 1),
  (138, 1),
  (240, 1),
  (77, 1),
  (1422, 1),
  (13, 1),
  (48, 1),
  (1139, 1),
  (3472, 1),
  (499, 1),
  (150, 1),
  (25, 1),
  (2489, 1),
  (1083, 1),
  (61, 1),
  (3423, 1)],
 [(0, 1),
  (128, 1),
  (4, 1),
  (262, 1),
  (1, 1),
  (649, 1),
  (908, 1),
  (13, 1),
  (15, 1),
  (3473, 1),
  (3474, 1),
  (3475, 1),
  (1172, 1),
  (29, 1),
  (547, 1),
  (169, 1),
  (170, 1),
  (182, 1),
  (187, 1),
  (446, 1),
  (321, 1),
  (147, 1),
  (77, 1),
  (590, 1),
  (214, 1),
  (93, 1),
  (232, 1),
  (2066, 1),
  (2547, 1),
  (117, 1),
  (248, 1),
  (3476, 1),
  (42, 1)],
 [(35, 1),
  (4, 1),
  (246, 1),
  (2951, 1),
  (328, 1),
  (1354, 1),
  (12, 1),
  (13, 1),
  (110, 1),
  (1891, 1),
  (3044, 1),
  (3477, 1),
  (3478, 1),
  (3479, 1),
  (3480, 1),
  (3481, 1),
  (602, 1),
  (3483, 1),
  (330, 1),
  (1437, 1),
  (3482, 1)],
 [(1, 1),
  (4, 1),
  (5, 1),
  (13, 1),
  (147, 1),
  (3484, 1),
  (3485, 1),
  (3486, 1),
  (3487, 1),
  (801, 1),
  (1318, 1),
  (1206, 1),
  (567, 1),
  (182, 1),
  (328, 1),
  (77, 1),
  (719, 1),
  (3044, 1),
  (616, 1),
  (2537, 1),
  (1011, 1),
  (244, 1),
  (117, 1),
  (123, 1)],
 [(515, 1),
  (4, 1),
  (519, 1),
  (1324, 1),
  (397, 1),
  (3501, 1),
  (2962, 1),
  (2835, 1),
  (610, 1),
  (24, 1),
  (283, 1),
  (3488, 1),
  (3489, 1),
  (3490, 1),
  (547, 1),
  (3492, 1),
  (3493, 1),
  (3494, 1),
  (3495, 1),
  (3496, 1),
  (3497, 1),
  (3498, 1),
  (3499, 1),
  (3500, 1),
  (301, 1),
  (3502, 1),
  (3503, 1),
  (48, 1),
  (3505, 1),
  (178, 1),
  (822, 1),
  (3258, 1),
  (60, 1),
  (288, 1),
  (578, 1),
  (709, 1),
  (327, 1),
  (328, 1),
  (73, 1),
  (1314, 1),
  (1743, 1),
  (173, 1),
  (3491, 1),
  (1368, 1),
  (98, 1),
  (3504, 1),
  (3044, 1),
  (618, 1),
  (1648, 1),
  (1427, 1),
  (116, 1),
  (126, 1)],
 [(2368, 1),
  (1, 1),
  (1505, 1),
  (330, 1),
  (2700, 1),
  (557, 1),
  (2638, 1),
  (48, 1),
  (3506, 1),
  (627, 1),
  (309, 1),
  (345, 1),
  (2844, 1),
  (29, 1),
  (30, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (2572, 1),
  (13, 1),
  (530, 1),
  (24, 1),
  (30, 1),
  (543, 1),
  (1582, 1),
  (48, 1),
  (2102, 1),
  (3127, 1),
  (949, 1),
  (3142, 1),
  (73, 1),
  (2487, 1),
  (77, 1),
  (88, 1),
  (601, 1),
  (602, 1),
  (603, 1),
  (93, 1),
  (94, 1),
  (1129, 1),
  (106, 1),
  (3182, 1),
  (3517, 1),
  (116, 1),
  (123, 1),
  (128, 1),
  (1158, 1),
  (140, 1),
  (144, 1),
  (1174, 1),
  (674, 1),
  (2219, 1),
  (1196, 1),
  (3247, 1),
  (691, 1),
  (182, 1),
  (3530, 1),
  (1215, 1),
  (3531, 1),
  (214, 1),
  (218, 1),
  (3527, 1),
  (234, 1),
  (2286, 1),
  (240, 1),
  (2803, 1),
  (762, 1),
  (2303, 1),
  (264, 1),
  (2826, 1),
  (273, 1),
  (788, 1),
  (2837, 1),
  (283, 1),
  (803, 1),
  (1318, 1),
  (813, 1),
  (54, 1),
  (328, 1),
  (1866, 1),
  (2417, 1),
  (2431, 1),
  (397, 1),
  (910, 1),
  (917, 1),
  (3490, 1),
  (3507, 1),
  (3508, 1),
  (3509, 1),
  (3510, 1),
  (3511, 1),
  (3512, 1),
  (3513, 1),
  (3514, 1),
  (3515, 1),
  (3516, 1),
  (330, 1),
  (3518, 1),
  (3519, 1),
  (3520, 1),
  (3521, 1),
  (3522, 1),
  (3523, 1),
  (3524, 1),
  (3525, 1),
  (3526, 1),
  (455, 1),
  (3528, 1),
  (3529, 1),
  (3018, 1),
  (1483, 1),
  (3532, 1),
  (3533, 1),
  (3534, 1),
  (3535, 1),
  (2004, 1),
  (476, 1),
  (486, 1),
  (1020, 1)],
 [(2499, 1),
  (4, 1),
  (1158, 1),
  (267, 1),
  (13, 1),
  (182, 1),
  (1339, 1),
  (30, 1),
  (447, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (3542, 1),
  (652, 1),
  (13, 1),
  (2733, 1),
  (16, 1),
  (1300, 1),
  (178, 1),
  (24, 1),
  (1318, 1),
  (1192, 1),
  (173, 1),
  (302, 1),
  (48, 1),
  (50, 1),
  (947, 1),
  (567, 1),
  (1594, 1),
  (61, 1),
  (1598, 1),
  (328, 1),
  (73, 1),
  (458, 1),
  (3536, 1),
  (3537, 1),
  (3538, 1),
  (3539, 1),
  (3540, 1),
  (3541, 1),
  (342, 1),
  (3543, 1),
  (602, 1),
  (479, 1),
  (528, 1),
  (610, 1),
  (3172, 1),
  (103, 1),
  (114, 1),
  (1277, 1)],
 [(1, 1),
  (5, 1),
  (16, 1),
  (267, 1),
  (48, 1),
  (49, 1),
  (50, 1),
  (340, 1),
  (117, 1),
  (3544, 1),
  (116, 1),
  (187, 1),
  (284, 1),
  (30, 1)],
 [(288, 1),
  (1, 1),
  (4, 1),
  (1128, 1),
  (12, 1),
  (267, 1),
  (2828, 1),
  (173, 1),
  (3085, 1),
  (465, 1),
  (50, 1),
  (1302, 1),
  (631, 1),
  (3545, 1),
  (3546, 1),
  (3547, 1),
  (3548, 1),
  (573, 1)],
 [(770, 1),
  (131, 1),
  (4, 1),
  (264, 1),
  (138, 1),
  (13, 1),
  (16, 1),
  (147, 1),
  (24, 1),
  (537, 1),
  (3483, 1),
  (30, 1),
  (2338, 1),
  (2090, 1),
  (2733, 1),
  (2312, 1),
  (50, 1),
  (180, 1),
  (821, 1),
  (2755, 1),
  (1351, 1),
  (330, 1),
  (1740, 1),
  (976, 1),
  (2692, 1),
  (2266, 1),
  (3549, 1),
  (3550, 1),
  (3551, 1),
  (3552, 1),
  (3553, 1),
  (3554, 1),
  (3555, 1),
  (3556, 1),
  (3557, 1),
  (3558, 1),
  (3559, 1),
  (1129, 1),
  (618, 1),
  (562, 1),
  (884, 1),
  (383, 1)],
 [(1, 1),
  (34, 1),
  (1659, 1),
  (1348, 1),
  (262, 1),
  (13, 1),
  (2287, 1),
  (50, 1),
  (153, 1),
  (571, 1)],
 [(1, 1),
  (197, 1),
  (808, 1),
  (169, 1),
  (394, 1),
  (13, 1),
  (3560, 1),
  (50, 1),
  (3561, 1),
  (61, 1)],
 [(576, 1),
  (1, 1),
  (1826, 1),
  (900, 1),
  (54, 1),
  (417, 1),
  (3562, 1),
  (3563, 1),
  (876, 1),
  (141, 1),
  (14, 1),
  (147, 1),
  (150, 1),
  (985, 1),
  (33, 1),
  (1375, 1),
  (127, 1)],
 [(1, 1),
  (1158, 1),
  (1297, 1),
  (795, 1),
  (3486, 1),
  (1733, 1),
  (33, 1),
  (931, 1),
  (3370, 1),
  (435, 1),
  (182, 1),
  (567, 1),
  (60, 1),
  (447, 1),
  (581, 1),
  (1094, 1),
  (3575, 1),
  (3577, 1),
  (473, 1),
  (990, 1),
  (2406, 1),
  (3564, 1),
  (3565, 1),
  (3566, 1),
  (3567, 1),
  (3568, 1),
  (3569, 1),
  (3570, 1),
  (3571, 1),
  (3572, 1),
  (3573, 1),
  (3574, 1),
  (119, 1),
  (3576, 1),
  (3321, 1)],
 [(244, 1), (602, 1), (4, 1), (1508, 1), (2844, 1)],
 [(3584, 1),
  (1, 1),
  (2, 1),
  (3587, 1),
  (3588, 1),
  (3589, 1),
  (3585, 1),
  (1149, 1),
  (2575, 1),
  (528, 1),
  (1297, 1),
  (195, 1),
  (1045, 1),
  (1497, 1),
  (410, 1),
  (283, 1),
  (90, 1),
  (30, 1),
  (33, 1),
  (931, 1),
  (169, 1),
  (1962, 1),
  (939, 1),
  (557, 1),
  (2354, 1),
  (180, 1),
  (182, 1),
  (700, 1),
  (61, 1),
  (1219, 1),
  (2870, 1),
  (2758, 1),
  (1736, 1),
  (73, 1),
  (77, 1),
  (1615, 1),
  (81, 1),
  (2649, 1),
  (602, 1),
  (1500, 1),
  (1632, 1),
  (1026, 1),
  (3579, 1),
  (997, 1),
  (486, 1),
  (616, 1),
  (1789, 1),
  (240, 1),
  (885, 1),
  (3586, 1),
  (120, 1),
  (3577, 1),
  (3578, 1),
  (123, 1),
  (3580, 1),
  (3581, 1),
  (3582, 1),
  (3583, 1)],
 [(512, 1),
  (1, 1),
  (3589, 1),
  (262, 1),
  (3591, 1),
  (3592, 1),
  (3593, 1),
  (128, 1),
  (1035, 1),
  (12, 1),
  (143, 1),
  (2834, 1),
  (147, 1),
  (150, 1),
  (25, 1),
  (0, 1),
  (3594, 1),
  (3590, 1),
  (169, 1),
  (18, 1),
  (72, 1),
  (178, 1),
  (56, 1),
  (61, 1),
  (3595, 1),
  (200, 1),
  (1615, 1),
  (2644, 1),
  (2650, 1),
  (479, 1),
  (2024, 1),
  (873, 1),
  (234, 1),
  (1005, 1),
  (754, 1),
  (1011, 1),
  (117, 1),
  (120, 1),
  (121, 1)],
 [(0, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (3589, 1),
  (3590, 1),
  (519, 1),
  (264, 1),
  (3593, 1),
  (3606, 1),
  (3607, 1),
  (3596, 1),
  (3597, 1),
  (3598, 1),
  (3599, 1),
  (3600, 1),
  (3601, 1),
  (1938, 1),
  (3603, 1),
  (3604, 1),
  (661, 1),
  (790, 1),
  (151, 1),
  (1560, 1),
  (878, 1),
  (1568, 1),
  (33, 1),
  (36, 1),
  (3605, 1),
  (169, 1),
  (1297, 1),
  (3118, 1),
  (13, 1),
  (128, 1),
  (180, 1),
  (182, 1),
  (571, 1),
  (60, 1),
  (273, 1),
  (32, 1),
  (196, 1),
  (1094, 1),
  (1738, 1),
  (459, 1),
  (77, 1),
  (1615, 1),
  (81, 1),
  (851, 1),
  (1422, 1),
  (2649, 1),
  (2650, 1),
  (3279, 1),
  (990, 1),
  (536, 1),
  (529, 1),
  (873, 1),
  (3179, 1),
  (1132, 1),
  (3602, 1),
  (1231, 1),
  (1393, 1),
  (759, 1),
  (121, 1),
  (2834, 1),
  (3583, 1),
  (2303, 1)],
 [(1312, 1),
  (1, 1),
  (2, 1),
  (2659, 1),
  (118, 1),
  (2758, 1),
  (106, 1),
  (459, 1),
  (13, 1),
  (93, 1),
  (1973, 1),
  (150, 1),
  (3608, 1),
  (3609, 1),
  (3610, 1),
  (3611, 1),
  (330, 1)],
 [(1, 1),
  (3, 1),
  (4, 1),
  (3589, 1),
  (137, 1),
  (13, 1),
  (1424, 1),
  (951, 1),
  (788, 1),
  (2069, 1),
  (22, 1),
  (24, 1),
  (25, 1),
  (3612, 1),
  (3613, 1),
  (150, 1),
  (3615, 1),
  (3616, 1),
  (33, 1),
  (3367, 1),
  (173, 1),
  (180, 1),
  (3614, 1),
  (55, 1),
  (1338, 1),
  (1851, 1),
  (62, 1),
  (567, 1),
  (78, 1),
  (99, 1),
  (1381, 1),
  (618, 1),
  (239, 1),
  (574, 1),
  (631, 1),
  (3583, 1)],
 [(3617, 1),
  (2196, 1),
  (4, 1),
  (169, 1),
  (330, 1),
  (140, 1),
  (3618, 1),
  (1615, 1),
  (16, 1),
  (116, 1),
  (94, 1),
  (54, 1),
  (100, 1),
  (207, 1),
  (117, 1),
  (972, 1),
  (30, 1),
  (2421, 1)],
 [(1, 1),
  (4, 1),
  (3590, 1),
  (1422, 1),
  (3619, 1),
  (3620, 1),
  (3621, 1),
  (3622, 1),
  (3623, 1),
  (3624, 1),
  (3625, 1),
  (3626, 1),
  (2171, 1),
  (1973, 1),
  (182, 1),
  (439, 1),
  (1228, 1),
  (1488, 1),
  (910, 1),
  (2650, 1),
  (93, 1),
  (99, 1),
  (1011, 1),
  (123, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (133, 1),
  (262, 1),
  (2440, 1),
  (140, 1),
  (13, 1),
  (14, 1),
  (3629, 1),
  (2962, 1),
  (283, 1),
  (2650, 1),
  (3615, 1),
  (32, 1),
  (801, 1),
  (36, 1),
  (3627, 1),
  (3628, 1),
  (173, 1),
  (3630, 1),
  (3631, 1),
  (3632, 1),
  (1201, 1),
  (50, 1),
  (821, 1),
  (182, 1),
  (567, 1),
  (1338, 1),
  (543, 1),
  (1354, 1),
  (3141, 1),
  (72, 1),
  (330, 1),
  (887, 1),
  (77, 1),
  (207, 1),
  (465, 1),
  (1422, 1),
  (2649, 1),
  (602, 1),
  (15, 1),
  (3292, 1),
  (102, 1),
  (616, 1),
  (562, 1),
  (1652, 1),
  (119, 1)],
 [(1, 1),
  (2, 1),
  (2563, 1),
  (4, 1),
  (907, 1),
  (13, 1),
  (2958, 1),
  (143, 1),
  (529, 1),
  (1938, 1),
  (2582, 1),
  (33, 1),
  (290, 1),
  (931, 1),
  (838, 1),
  (173, 1),
  (1454, 1),
  (48, 1),
  (3633, 1),
  (3634, 1),
  (3635, 1),
  (3636, 1),
  (182, 1),
  (183, 1),
  (1083, 1),
  (198, 1),
  (73, 1),
  (972, 1),
  (77, 1),
  (207, 1),
  (81, 1),
  (3540, 1),
  (1367, 1),
  (2649, 1),
  (2650, 1),
  (3419, 1),
  (988, 1),
  (94, 1),
  (483, 1),
  (2024, 1),
  (50, 1),
  (1393, 1),
  (1615, 1),
  (123, 1)],
 [(1, 1),
  (774, 1),
  (10, 1),
  (13, 1),
  (146, 1),
  (788, 1),
  (283, 1),
  (288, 1),
  (290, 1),
  (3107, 1),
  (292, 1),
  (173, 1),
  (48, 1),
  (50, 1),
  (694, 1),
  (207, 1),
  (470, 1),
  (99, 1),
  (1508, 1),
  (114, 1),
  (244, 1),
  (2811, 1)],
 [(128, 1),
  (1, 1),
  (4, 1),
  (2182, 1),
  (395, 1),
  (13, 1),
  (146, 1),
  (2844, 1),
  (2846, 1),
  (1116, 1),
  (1068, 1),
  (48, 1),
  (3637, 1),
  (3638, 1),
  (3639, 1),
  (3640, 1),
  (3641, 1),
  (3642, 1),
  (3643, 1),
  (3644, 1),
  (2758, 1),
  (455, 1),
  (2124, 1),
  (207, 1),
  (2640, 1),
  (1080, 1),
  (3540, 1),
  (1500, 1),
  (2024, 1),
  (1001, 1),
  (2925, 1),
  (1648, 1)],
 [(128, 1),
  (1, 1),
  (642, 1),
  (4, 1),
  (522, 1),
  (2317, 1),
  (1681, 1),
  (2322, 1),
  (403, 1),
  (788, 1),
  (150, 1),
  (280, 1),
  (153, 1),
  (1309, 1),
  (30, 1),
  (1312, 1),
  (1571, 1),
  (932, 1),
  (3143, 1),
  (61, 1),
  (157, 1),
  (48, 1),
  (2333, 1),
  (183, 1),
  (3645, 1),
  (3646, 1),
  (3647, 1),
  (3648, 1),
  (3649, 1),
  (3650, 1),
  (3651, 1),
  (3652, 1),
  (3653, 1),
  (3654, 1),
  (3655, 1),
  (3656, 1),
  (3657, 1),
  (3658, 1),
  (3659, 1),
  (3660, 1),
  (207, 1),
  (13, 1),
  (2641, 1),
  (214, 1),
  (1111, 1),
  (484, 1),
  (218, 1),
  (591, 1),
  (94, 1),
  (1503, 1),
  (483, 1),
  (100, 1),
  (1255, 1),
  (672, 1),
  (1282, 1),
  (463, 1),
  (73, 1),
  (499, 1),
  (62, 1),
  (246, 1),
  (123, 1)],
 [(128, 1),
  (2, 1),
  (470, 1),
  (519, 1),
  (523, 1),
  (268, 1),
  (788, 1),
  (149, 1),
  (1065, 1),
  (48, 1),
  (573, 1),
  (62, 1),
  (319, 1),
  (267, 1),
  (73, 1),
  (3661, 1),
  (3662, 1),
  (3663, 1),
  (3664, 1),
  (3665, 1),
  (3666, 1),
  (3667, 1),
  (3668, 1),
  (3669, 1),
  (3670, 1),
  (3671, 1),
  (3672, 1),
  (3673, 1),
  (2917, 1),
  (2152, 1),
  (243, 1),
  (169, 1)],
 [(1, 1),
  (1154, 1),
  (5, 1),
  (1158, 1),
  (13, 1),
  (526, 1),
  (146, 1),
  (788, 1),
  (24, 1),
  (2969, 1),
  (37, 1),
  (1193, 1),
  (557, 1),
  (48, 1),
  (3634, 1),
  (565, 1),
  (62, 1),
  (455, 1),
  (3018, 1),
  (77, 1),
  (3674, 1),
  (3675, 1),
  (3676, 1),
  (3677, 1),
  (3678, 1),
  (3679, 1),
  (739, 1),
  (1133, 1),
  (511, 1)],
 [(3680, 1),
  (1, 1),
  (3682, 1),
  (3683, 1),
  (4, 1),
  (1765, 1),
  (2801, 1),
  (169, 1),
  (74, 1),
  (39, 1),
  (2412, 1),
  (173, 1),
  (2641, 1),
  (3681, 1),
  (3061, 1),
  (54, 1),
  (567, 1),
  (602, 1),
  (1823, 1)],
 [(1, 1),
  (3684, 1),
  (746, 1),
  (77, 1),
  (1902, 1),
  (687, 1),
  (822, 1),
  (207, 1),
  (93, 1),
  (383, 1)],
 [(1, 1),
  (3075, 1),
  (140, 1),
  (13, 1),
  (15, 1),
  (20, 1),
  (23, 1),
  (153, 1),
  (34, 1),
  (1444, 1),
  (39, 1),
  (169, 1),
  (1968, 1),
  (1586, 1),
  (180, 1),
  (73, 1),
  (1234, 1),
  (343, 1),
  (1530, 1),
  (3685, 1),
  (3686, 1),
  (3687, 1),
  (3688, 1),
  (3689, 1),
  (239, 1),
  (1648, 1),
  (116, 1),
  (119, 1),
  (762, 1)],
 [(1, 1),
  (34, 1),
  (3691, 1),
  (2149, 1),
  (710, 1),
  (3690, 1),
  (183, 1),
  (589, 1),
  (239, 1),
  (1489, 1),
  (106, 1),
  (116, 1),
  (1973, 1),
  (150, 1),
  (23, 1),
  (2, 1),
  (207, 1),
  (10, 1),
  (30, 1)],
 [(128, 1),
  (1, 1),
  (3692, 1),
  (3693, 1),
  (143, 1),
  (3224, 1),
  (114, 1),
  (117, 1),
  (631, 1),
  (24, 1)],
 [(1, 1),
  (547, 1),
  (14, 1),
  (50, 1),
  (131, 1),
  (789, 1),
  (727, 1),
  (24, 1),
  (606, 1)],
 [(1, 1),
  (2, 1),
  (131, 1),
  (4, 1),
  (649, 1),
  (13, 1),
  (14, 1),
  (239, 1),
  (1552, 1),
  (23, 1),
  (1435, 1),
  (285, 1),
  (37, 1),
  (169, 1),
  (1324, 1),
  (557, 1),
  (50, 1),
  (435, 1),
  (1083, 1),
  (1342, 1),
  (1984, 1),
  (1091, 1),
  (207, 1),
  (1497, 1),
  (602, 1),
  (487, 1),
  (616, 1),
  (233, 1),
  (618, 1),
  (1132, 1),
  (3694, 1),
  (3695, 1),
  (3696, 1),
  (3697, 1),
  (3698, 1),
  (116, 1),
  (248, 1),
  (123, 1)],
 [(1, 1),
  (2, 1),
  (2563, 1),
  (4, 1),
  (9, 1),
  (10, 1),
  (2572, 1),
  (21, 1),
  (1558, 1),
  (25, 1),
  (26, 1),
  (31, 1),
  (36, 1),
  (37, 1),
  (1578, 1),
  (557, 1),
  (48, 1),
  (54, 1),
  (567, 1),
  (573, 1),
  (1088, 1),
  (3142, 1),
  (3151, 1),
  (602, 1),
  (1119, 1),
  (100, 1),
  (616, 1),
  (1642, 1),
  (109, 1),
  (114, 1),
  (3699, 1),
  (3700, 1),
  (1653, 1),
  (3702, 1),
  (3703, 1),
  (3704, 1),
  (3705, 1),
  (3706, 1),
  (3707, 1),
  (3708, 1),
  (3709, 1),
  (3710, 1),
  (3711, 1),
  (3712, 1),
  (3713, 1),
  (3714, 1),
  (3715, 1),
  (3716, 1),
  (144, 1),
  (145, 1),
  (146, 1),
  (149, 1),
  (1700, 1),
  (165, 1),
  (169, 1),
  (1199, 1),
  (2738, 1),
  (180, 1),
  (183, 1),
  (2506, 1),
  (3701, 1),
  (198, 1),
  (1225, 1),
  (1740, 1),
  (2783, 1),
  (123, 1),
  (235, 1),
  (239, 1),
  (755, 1),
  (248, 1),
  (264, 1),
  (780, 1),
  (286, 1),
  (2338, 1),
  (300, 1),
  (1337, 1),
  (1345, 1),
  (1361, 1),
  (872, 1),
  (2924, 1),
  (2194, 1),
  (1902, 1),
  (1913, 1),
  (890, 1),
  (382, 1),
  (910, 1),
  (2465, 1),
  (1457, 1),
  (1467, 1),
  (444, 1),
  (968, 1),
  (1737, 1),
  (1490, 1),
  (981, 1),
  (1499, 1),
  (483, 1),
  (487, 1),
  (3563, 1),
  (1516, 1),
  (1011, 1),
  (1193, 1),
  (510, 1),
  (2165, 1)],
 [(3725, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (3717, 1),
  (3718, 1),
  (3719, 1),
  (3720, 1),
  (3721, 1),
  (3722, 1),
  (3723, 1),
  (3724, 1),
  (13, 1),
  (654, 1),
  (3727, 1),
  (3728, 1),
  (3729, 1),
  (146, 1),
  (3731, 1),
  (3732, 1),
  (3733, 1),
  (3730, 1),
  (1689, 1),
  (24, 1),
  (1305, 1),
  (3726, 1),
  (2844, 1),
  (30, 1),
  (1797, 1),
  (1092, 1),
  (289, 1),
  (1444, 1),
  (37, 1),
  (2473, 1),
  (3735, 1),
  (861, 1),
  (176, 1),
  (520, 1),
  (691, 1),
  (180, 1),
  (1973, 1),
  (1080, 1),
  (1338, 1),
  (444, 1),
  (153, 1),
  (3642, 1),
  (2500, 1),
  (3141, 1),
  (2758, 1),
  (455, 1),
  (73, 1),
  (3734, 1),
  (119, 1),
  (60, 1),
  (207, 1),
  (2640, 1),
  (3026, 1),
  (979, 1),
  (469, 1),
  (855, 1),
  (857, 1),
  (602, 1),
  (477, 1),
  (3038, 1),
  (100, 1),
  (2364, 1),
  (106, 1),
  (237, 1),
  (1902, 1),
  (239, 1),
  (1648, 1),
  (3441, 1),
  (631, 1),
  (1144, 1),
  (123, 1)],
 [(1, 1),
  (2, 1),
  (1879, 1),
  (13, 1),
  (787, 1),
  (3736, 1),
  (3737, 1),
  (3738, 1),
  (557, 1),
  (435, 1),
  (187, 1),
  (1348, 1),
  (461, 1),
  (727, 1),
  (1497, 1),
  (602, 1),
  (478, 1),
  (738, 1),
  (1083, 1),
  (101, 1),
  (1254, 1),
  (234, 1)],
 [(512, 1),
  (1, 1),
  (2563, 1),
  (4, 1),
  (133, 1),
  (262, 1),
  (904, 1),
  (128, 1),
  (782, 1),
  (1555, 1),
  (3739, 1),
  (3740, 1),
  (3741, 1),
  (3742, 1),
  (3743, 1),
  (3744, 1),
  (42, 1),
  (435, 1),
  (3166, 1),
  (73, 1),
  (1083, 1),
  (330, 1),
  (1097, 1),
  (2506, 1),
  (210, 1),
  (14, 1),
  (342, 1),
  (727, 1),
  (862, 1),
  (131, 1),
  (486, 1),
  (1514, 1),
  (240, 1),
  (499, 1),
  (2555, 1),
  (362, 1),
  (383, 1)],
 [(1, 1),
  (4, 1),
  (1032, 1),
  (13, 1),
  (15, 1),
  (1554, 1),
  (3613, 1),
  (30, 1),
  (3762, 1),
  (48, 1),
  (2102, 1),
  (3764, 1),
  (1083, 1),
  (578, 1),
  (2628, 1),
  (3143, 1),
  (74, 1),
  (183, 1),
  (1101, 1),
  (3769, 1),
  (600, 1),
  (3770, 1),
  (94, 1),
  (187, 1),
  (3771, 1),
  (103, 1),
  (618, 1),
  (3698, 1),
  (1147, 1),
  (1149, 1),
  (127, 1),
  (130, 1),
  (131, 1),
  (137, 1),
  (3745, 1),
  (3746, 1),
  (3747, 1),
  (3748, 1),
  (3749, 1),
  (3750, 1),
  (3751, 1),
  (3752, 1),
  (169, 1),
  (3754, 1),
  (3755, 1),
  (3756, 1),
  (173, 1),
  (3758, 1),
  (3759, 1),
  (3760, 1),
  (3761, 1),
  (178, 1),
  (3763, 1),
  (180, 1),
  (3765, 1),
  (3766, 1),
  (3767, 1),
  (3768, 1),
  (3257, 1),
  (698, 1),
  (699, 1),
  (3772, 1),
  (3757, 1),
  (709, 1),
  (198, 1),
  (1736, 1),
  (2766, 1),
  (207, 1),
  (212, 1),
  (727, 1),
  (739, 1),
  (741, 1),
  (1255, 1),
  (239, 1),
  (1779, 1),
  (2312, 1),
  (788, 1),
  (288, 1),
  (2858, 1),
  (314, 1),
  (330, 1),
  (848, 1),
  (340, 1),
  (342, 1),
  (862, 1),
  (1895, 1),
  (487, 1),
  (1902, 1),
  (367, 1),
  (3459, 1),
  (397, 1),
  (910, 1),
  (912, 1),
  (2962, 1),
  (917, 1),
  (410, 1),
  (2978, 1),
  (1449, 1),
  (939, 1),
  (432, 1),
  (945, 1),
  (435, 1),
  (976, 1),
  (465, 1),
  (164, 1),
  (999, 1),
  (1524, 1),
  (3753, 1),
  (2555, 1)],
 [(3776, 1),
  (1, 1),
  (1219, 1),
  (1669, 1),
  (486, 1),
  (199, 1),
  (169, 1),
  (234, 1),
  (939, 1),
  (77, 1),
  (2238, 1),
  (1777, 1),
  (1147, 1),
  (3775, 1),
  (3777, 1),
  (1887, 1),
  (3773, 1),
  (3774, 1),
  (447, 1)],
 [(1281, 1),
  (3778, 1),
  (3779, 1),
  (246, 1),
  (904, 1),
  (10, 1),
  (557, 1),
  (949, 1),
  (822, 1),
  (794, 1),
  (122, 1)],
 [(1760, 1), (4, 1), (73, 1), (140, 1), (48, 1), (3537, 1), (1083, 1)],
 [(128, 1),
  (1, 1),
  (1410, 1),
  (4, 1),
  (262, 1),
  (903, 1),
  (13, 1),
  (2, 1),
  (14, 1),
  (538, 1),
  (284, 1),
  (421, 1),
  (939, 1),
  (178, 1),
  (1199, 1),
  (50, 1),
  (187, 1),
  (60, 1),
  (62, 1),
  (1088, 1),
  (3780, 1),
  (3781, 1),
  (3782, 1),
  (327, 1),
  (3784, 1),
  (3785, 1),
  (330, 1),
  (3783, 1),
  (591, 1),
  (2004, 1),
  (2390, 1),
  (88, 1),
  (602, 1),
  (1083, 1),
  (104, 1),
  (752, 1),
  (1017, 1),
  (1147, 1),
  (1788, 1)],
 [(2, 1),
  (4, 1),
  (773, 1),
  (262, 1),
  (14, 1),
  (1581, 1),
  (144, 1),
  (819, 1),
  (3228, 1),
  (33, 1),
  (939, 1),
  (557, 1),
  (435, 1),
  (182, 1),
  (3727, 1),
  (54, 1),
  (3786, 1),
  (3787, 1),
  (3788, 1),
  (463, 1),
  (342, 1),
  (2895, 1),
  (863, 1),
  (100, 1),
  (486, 1),
  (362, 1),
  (2923, 1),
  (1520, 1),
  (499, 1),
  (1530, 1),
  (2429, 1)],
 [(1, 1),
  (1794, 1),
  (3, 1),
  (519, 1),
  (650, 1),
  (13, 1),
  (14, 1),
  (2575, 1),
  (2196, 1),
  (30, 1),
  (172, 1),
  (557, 1),
  (1455, 1),
  (48, 1),
  (1206, 1),
  (1348, 1),
  (70, 1),
  (3789, 1),
  (727, 1),
  (487, 1),
  (616, 1),
  (499, 1),
  (246, 1),
  (762, 1)],
 [(1, 1),
  (4, 1),
  (518, 1),
  (10, 1),
  (13, 1),
  (2072, 1),
  (24, 1),
  (30, 1),
  (34, 1),
  (294, 1),
  (807, 1),
  (48, 1),
  (1076, 1),
  (3791, 1),
  (2756, 1),
  (70, 1),
  (3790, 1),
  (1677, 1),
  (3792, 1),
  (3162, 1),
  (207, 1),
  (2284, 1),
  (636, 1)],
 [(1326, 1),
  (70, 1),
  (71, 1),
  (136, 1),
  (1001, 1),
  (455, 1),
  (1938, 1),
  (1902, 1),
  (3793, 1),
  (3794, 1),
  (3795, 1),
  (2900, 1),
  (2453, 1),
  (2774, 1),
  (184, 1),
  (3642, 1),
  (3649, 1),
  (60, 1),
  (2431, 1)],
 [(4, 1),
  (342, 1),
  (264, 1),
  (1162, 1),
  (1422, 1),
  (149, 1),
  (150, 1),
  (1306, 1),
  (901, 1),
  (169, 1),
  (48, 1),
  (2099, 1),
  (180, 1),
  (1206, 1),
  (1338, 1),
  (571, 1),
  (197, 1),
  (198, 1),
  (972, 1),
  (207, 1),
  (976, 1),
  (3796, 1),
  (3797, 1),
  (3798, 1),
  (486, 1),
  (234, 1),
  (3447, 1)],
 [(1016, 1),
  (1536, 1),
  (2, 1),
  (4, 1),
  (1669, 1),
  (1, 1),
  (905, 1),
  (30, 1),
  (12, 1),
  (3469, 1),
  (20, 1),
  (3806, 1),
  (150, 1),
  (151, 1),
  (2073, 1),
  (26, 1),
  (29, 1),
  (2590, 1),
  (672, 1),
  (3234, 1),
  (675, 1),
  (2597, 1),
  (808, 1),
  (2473, 1),
  (1452, 1),
  (48, 1),
  (50, 1),
  (2739, 1),
  (94, 1),
  (182, 1),
  (705, 1),
  (573, 1),
  (62, 1),
  (1397, 1),
  (3393, 1),
  (197, 1),
  (330, 1),
  (1483, 1),
  (333, 1),
  (78, 1),
  (13, 1),
  (888, 1),
  (340, 1),
  (341, 1),
  (3799, 1),
  (3800, 1),
  (3801, 1),
  (3802, 1),
  (3803, 1),
  (3804, 1),
  (3805, 1),
  (350, 1),
  (479, 1),
  (483, 1),
  (1130, 1),
  (492, 1),
  (365, 1),
  (366, 1),
  (1903, 1),
  (1008, 1),
  (114, 1),
  (1267, 1),
  (3646, 1),
  (3448, 1),
  (1922, 1)],
 [(1, 1),
  (2, 1),
  (133, 1),
  (262, 1),
  (1684, 1),
  (675, 1),
  (1578, 1),
  (939, 1),
  (687, 1),
  (182, 1),
  (55, 1),
  (317, 1),
  (197, 1),
  (1737, 1),
  (463, 1),
  (867, 1),
  (3796, 1),
  (217, 1),
  (93, 1),
  (3807, 1),
  (3808, 1),
  (3809, 1),
  (483, 1),
  (2533, 1),
  (1130, 1),
  (235, 1),
  (2284, 1),
  (499, 1),
  (2644, 1),
  (234, 1)],
 [(128, 1),
  (1, 1),
  (262, 1),
  (1159, 1),
  (267, 1),
  (1682, 1),
  (150, 1),
  (26, 1),
  (30, 1),
  (3763, 1),
  (2334, 1),
  (187, 1),
  (3774, 1),
  (197, 1),
  (72, 1),
  (73, 1),
  (2508, 1),
  (77, 1),
  (78, 1),
  (2135, 1),
  (1500, 1),
  (3810, 1),
  (3811, 1),
  (3812, 1),
  (3813, 1),
  (3814, 1),
  (3815, 1),
  (3816, 1),
  (114, 1),
  (759, 1),
  (1789, 1)],
 [(387, 1),
  (2824, 1),
  (140, 1),
  (13, 1),
  (398, 1),
  (144, 1),
  (1562, 1),
  (667, 1),
  (34, 1),
  (932, 1),
  (3494, 1),
  (169, 1),
  (2091, 1),
  (942, 1),
  (48, 1),
  (1073, 1),
  (3250, 1),
  (439, 1),
  (60, 1),
  (2500, 1),
  (601, 1),
  (94, 1),
  (2832, 1),
  (483, 1),
  (872, 1),
  (3817, 1),
  (3818, 1),
  (3819, 1),
  (3820, 1),
  (3821, 1),
  (3822, 1),
  (119, 1)],
 [(48, 1),
  (522, 1),
  (1475, 1),
  (4, 1),
  (133, 1),
  (1830, 1),
  (327, 1),
  (1481, 1),
  (1482, 1),
  (107, 1),
  (3823, 1),
  (144, 1),
  (3825, 1),
  (343, 1),
  (169, 1),
  (890, 1),
  (2363, 1),
  (3824, 1),
  (990, 1),
  (1055, 1)],
 [(3714, 1),
  (4, 1),
  (262, 1),
  (522, 1),
  (13, 1),
  (24, 1),
  (173, 1),
  (50, 1),
  (1206, 1),
  (698, 1),
  (60, 1),
  (317, 1),
  (3796, 1),
  (100, 1),
  (1130, 1),
  (3820, 1),
  (3826, 1),
  (3827, 1),
  (3828, 1),
  (3829, 1),
  (3830, 1),
  (3448, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (10, 1),
  (1035, 1),
  (14, 1),
  (16, 1),
  (22, 1),
  (26, 1),
  (29, 1),
  (30, 1),
  (1571, 1),
  (48, 1),
  (50, 1),
  (51, 1),
  (55, 1),
  (3643, 1),
  (60, 1),
  (1085, 1),
  (608, 1),
  (3657, 1),
  (74, 1),
  (80, 1),
  (600, 1),
  (93, 1),
  (1120, 1),
  (103, 1),
  (616, 1),
  (105, 1),
  (110, 1),
  (2165, 1),
  (119, 1),
  (1660, 1),
  (128, 1),
  (140, 1),
  (150, 1),
  (169, 1),
  (3246, 1),
  (182, 1),
  (183, 1),
  (3259, 1),
  (1727, 1),
  (235, 1),
  (2284, 1),
  (3829, 1),
  (3831, 1),
  (3832, 1),
  (3833, 1),
  (762, 1),
  (3835, 1),
  (3836, 1),
  (3837, 1),
  (3838, 1),
  (3839, 1),
  (3840, 1),
  (3841, 1),
  (3842, 1),
  (3843, 1),
  (3844, 1),
  (3845, 1),
  (3846, 1),
  (3847, 1),
  (3848, 1),
  (3849, 1),
  (3458, 1),
  (274, 1),
  (795, 1),
  (284, 1),
  (298, 1),
  (1851, 1),
  (1358, 1),
  (1361, 1),
  (345, 1),
  (2825, 1),
  (61, 1),
  (370, 1),
  (888, 1),
  (1915, 1),
  (1410, 1),
  (1427, 1),
  (927, 1),
  (3498, 1),
  (1973, 1),
  (449, 1),
  (473, 1),
  (3834, 1),
  (2021, 1),
  (492, 1),
  (1020, 1)],
 [(3850, 1),
  (3851, 1),
  (3852, 1),
  (3853, 1),
  (3854, 1),
  (917, 1),
  (150, 1),
  (2199, 1),
  (26, 1),
  (1693, 1),
  (808, 1),
  (178, 1),
  (55, 1),
  (77, 1),
  (210, 1),
  (84, 1),
  (2648, 1),
  (96, 1),
  (994, 1),
  (1891, 1),
  (764, 1),
  (1898, 1),
  (2793, 1),
  (123, 1),
  (2940, 1)],
 [(128, 1),
  (99, 1),
  (37, 1),
  (648, 1),
  (169, 1),
  (3855, 1),
  (3856, 1),
  (50, 1),
  (1044, 1),
  (24, 1),
  (121, 1),
  (764, 1),
  (1693, 1),
  (30, 1),
  (1076, 1)],
 [(1, 1),
  (1794, 1),
  (4, 1),
  (263, 1),
  (13, 1),
  (16, 1),
  (3857, 1),
  (3858, 1),
  (3859, 1),
  (3860, 1),
  (3861, 1),
  (30, 1),
  (165, 1),
  (169, 1),
  (432, 1),
  (670, 1),
  (184, 1),
  (2757, 1),
  (455, 1),
  (1354, 1),
  (207, 1),
  (3681, 1),
  (1132, 1),
  (631, 1),
  (123, 1)],
 [(1, 1),
  (483, 1),
  (645, 1),
  (75, 1),
  (1133, 1),
  (1776, 1),
  (84, 1),
  (2165, 1)],
 [(1, 1),
  (1942, 1),
  (10, 1),
  (1298, 1),
  (2067, 1),
  (21, 1),
  (3862, 1),
  (3863, 1),
  (3864, 1),
  (3865, 1),
  (670, 1),
  (416, 1),
  (34, 1),
  (1572, 1),
  (3111, 1),
  (48, 1),
  (1076, 1),
  (1467, 1),
  (62, 1),
  (2500, 1),
  (3018, 1),
  (78, 1),
  (207, 1),
  (83, 1),
  (84, 1),
  (1116, 1),
  (611, 1),
  (869, 1),
  (1390, 1),
  (239, 1),
  (1776, 1),
  (150, 1),
  (764, 1)],
 [(1, 1),
  (2, 1),
  (2987, 1),
  (4, 1),
  (517, 1),
  (520, 1),
  (23, 1),
  (13, 1),
  (529, 1),
  (2067, 1),
  (1687, 1),
  (24, 1),
  (3866, 1),
  (3867, 1),
  (3868, 1),
  (3869, 1),
  (3870, 1),
  (3871, 1),
  (3872, 1),
  (3873, 1),
  (3874, 1),
  (3875, 1),
  (1572, 1),
  (3877, 1),
  (550, 1),
  (3879, 1),
  (3880, 1),
  (2731, 1),
  (1309, 1),
  (48, 1),
  (690, 1),
  (1076, 1),
  (73, 1),
  (1467, 1),
  (416, 1),
  (1734, 1),
  (2377, 1),
  (567, 1),
  (207, 1),
  (83, 1),
  (340, 1),
  (341, 1),
  (3321, 1),
  (600, 1),
  (3876, 1),
  (602, 1),
  (1374, 1),
  (95, 1),
  (84, 1),
  (1506, 1),
  (3878, 1),
  (1902, 1),
  (2162, 1),
  (851, 1),
  (1015, 1),
  (1145, 1),
  (2300, 1)],
 [(128, 1),
  (1, 1),
  (642, 1),
  (2194, 1),
  (10, 1),
  (73, 1),
  (74, 1),
  (45, 1),
  (3821, 1),
  (50, 1),
  (211, 1),
  (122, 1),
  (54, 1),
  (24, 1),
  (380, 1),
  (3578, 1),
  (1743, 1),
  (764, 1),
  (42, 1)],
 [(1, 1),
  (150, 1),
  (3753, 1),
  (3882, 1),
  (3883, 1),
  (397, 1),
  (207, 1),
  (176, 1),
  (1298, 1),
  (182, 1),
  (3881, 1),
  (991, 1),
  (1116, 1),
  (2377, 1),
  (1023, 1)],
 [(1, 1),
  (944, 1),
  (165, 1),
  (298, 1),
  (299, 1),
  (3884, 1),
  (3885, 1),
  (3886, 1),
  (3887, 1),
  (176, 1),
  (3250, 1),
  (899, 1),
  (1621, 1),
  (249, 1),
  (25, 1),
  (1146, 1),
  (861, 1),
  (234, 1)],
 [(1, 1),
  (4, 1),
  (10, 1),
  (13, 1),
  (529, 1),
  (283, 1),
  (3747, 1),
  (293, 1),
  (114, 1),
  (3888, 1),
  (3889, 1),
  (3890, 1),
  (185, 1),
  (571, 1),
  (972, 1),
  (470, 1),
  (869, 1),
  (487, 1),
  (106, 1),
  (3186, 1),
  (244, 1),
  (764, 1)],
 [(1, 1),
  (650, 1),
  (14, 1),
  (529, 1),
  (149, 1),
  (150, 1),
  (153, 1),
  (545, 1),
  (169, 1),
  (1962, 1),
  (173, 1),
  (48, 1),
  (50, 1),
  (691, 1),
  (3892, 1),
  (3893, 1),
  (3894, 1),
  (3895, 1),
  (3896, 1),
  (3897, 1),
  (3643, 1),
  (573, 1),
  (2111, 1),
  (330, 1),
  (439, 1),
  (3020, 1),
  (77, 1),
  (719, 1),
  (995, 1),
  (873, 1),
  (2033, 1),
  (245, 1),
  (246, 1),
  (3891, 1)],
 [(0, 1),
  (1, 1),
  (4, 1),
  (2572, 1),
  (142, 1),
  (280, 1),
  (30, 1),
  (1443, 1),
  (2852, 1),
  (293, 1),
  (169, 1),
  (3885, 1),
  (176, 1),
  (691, 1),
  (309, 1),
  (182, 1),
  (439, 1),
  (3898, 1),
  (3899, 1),
  (60, 1),
  (573, 1),
  (2555, 1),
  (1733, 1),
  (1222, 1),
  (73, 1),
  (1869, 1),
  (207, 1),
  (2896, 1),
  (2002, 1),
  (343, 1),
  (932, 1),
  (602, 1),
  (2909, 1),
  (36, 1),
  (867, 1),
  (869, 1),
  (2280, 1),
  (3900, 1),
  (3901, 1),
  (752, 1),
  (114, 1),
  (1652, 1),
  (3190, 1),
  (1146, 1),
  (1147, 1),
  (1660, 1),
  (126, 1)],
 [(2, 1),
  (4, 1),
  (1413, 1),
  (262, 1),
  (449, 1),
  (1303, 1),
  (13, 1),
  (398, 1),
  (1645, 1),
  (1169, 1),
  (2194, 1),
  (403, 1),
  (788, 1),
  (533, 1),
  (23, 1),
  (25, 1),
  (29, 1),
  (33, 1),
  (290, 1),
  (774, 1),
  (1830, 1),
  (1960, 1),
  (1193, 1),
  (42, 1),
  (3911, 1),
  (1719, 1),
  (2606, 1),
  (1967, 1),
  (48, 1),
  (50, 1),
  (439, 1),
  (1851, 1),
  (60, 1),
  (317, 1),
  (3902, 1),
  (3903, 1),
  (3904, 1),
  (3905, 1),
  (3906, 1),
  (3907, 1),
  (3908, 1),
  (3909, 1),
  (3910, 1),
  (1441, 1),
  (330, 1),
  (459, 1),
  (3023, 1),
  (2258, 1),
  (739, 1),
  (14, 1),
  (2364, 1),
  (2905, 1),
  (602, 1),
  (15, 1),
  (1402, 1),
  (293, 1),
  (263, 1),
  (610, 1),
  (99, 1),
  (100, 1),
  (121, 1),
  (486, 1),
  (999, 1),
  (1148, 1),
  (1427, 1),
  (749, 1),
  (368, 1),
  (499, 1),
  (628, 1),
  (187, 1),
  (41, 1),
  (55, 1),
  (1146, 1),
  (764, 1),
  (383, 1)],
 [(4, 1),
  (12, 1),
  (13, 1),
  (16, 1),
  (2067, 1),
  (24, 1),
  (26, 1),
  (2589, 1),
  (31, 1),
  (32, 1),
  (33, 1),
  (1571, 1),
  (37, 1),
  (38, 1),
  (3623, 1),
  (2090, 1),
  (1068, 1),
  (45, 1),
  (52, 1),
  (567, 1),
  (3642, 1),
  (60, 1),
  (61, 1),
  (3140, 1),
  (3141, 1),
  (70, 1),
  (71, 1),
  (590, 1),
  (3151, 1),
  (600, 1),
  (2147, 1),
  (1133, 1),
  (787, 1),
  (1144, 1),
  (124, 1),
  (3710, 1),
  (1165, 1),
  (1678, 1),
  (2199, 1),
  (157, 1),
  (164, 1),
  (169, 1),
  (176, 1),
  (184, 1),
  (2753, 1),
  (196, 1),
  (3192, 1),
  (214, 1),
  (1771, 1),
  (237, 1),
  (255, 1),
  (769, 1),
  (259, 1),
  (3859, 1),
  (1305, 1),
  (3364, 1),
  (2341, 1),
  (807, 1),
  (822, 1),
  (3384, 1),
  (317, 1),
  (831, 1),
  (3912, 1),
  (3913, 1),
  (3914, 1),
  (3915, 1),
  (3916, 1),
  (3917, 1),
  (3918, 1),
  (3919, 1),
  (3920, 1),
  (3921, 1),
  (3922, 1),
  (3923, 1),
  (3924, 1),
  (341, 1),
  (3926, 1),
  (3927, 1),
  (3928, 1),
  (3929, 1),
  (1884, 1),
  (1902, 1),
  (1001, 1),
  (1401, 1),
  (385, 1),
  (900, 1),
  (1423, 1),
  (1424, 1),
  (2964, 1),
  (1435, 1),
  (412, 1),
  (1444, 1),
  (3506, 1),
  (1973, 1),
  (3517, 1),
  (331, 1),
  (455, 1),
  (3540, 1),
  (480, 1),
  (1510, 1),
  (487, 1),
  (2024, 1),
  (3561, 1),
  (490, 1),
  (2541, 1),
  (1193, 1),
  (1531, 1),
  (3925, 1)],
 [(1505, 1),
  (3908, 1),
  (1206, 1),
  (1869, 1),
  (1, 1),
  (2280, 1),
  (151, 1),
  (557, 1),
  (13, 1),
  (48, 1),
  (573, 1),
  (180, 1),
  (342, 1),
  (343, 1),
  (4, 1),
  (602, 1),
  (3931, 1),
  (3932, 1),
  (3930, 1),
  (1470, 1),
  (182, 1)],
 [(100, 1), (465, 1), (808, 1), (48, 1), (968, 1), (50, 1)],
 [(0, 1),
  (1, 1),
  (4, 1),
  (1033, 1),
  (10, 1),
  (146, 1),
  (150, 1),
  (173, 1),
  (1967, 1),
  (180, 1),
  (1077, 1),
  (479, 1),
  (1085, 1),
  (3578, 1),
  (708, 1),
  (2246, 1),
  (3023, 1),
  (3933, 1),
  (3934, 1),
  (3935, 1),
  (3936, 1),
  (3937, 1),
  (3938, 1),
  (100, 1),
  (618, 1),
  (3821, 1),
  (1391, 1),
  (3186, 1),
  (888, 1),
  (1018, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (619, 1),
  (900, 1),
  (486, 1),
  (3947, 1),
  (13, 1),
  (3821, 1),
  (403, 1),
  (150, 1),
  (293, 1),
  (550, 1),
  (169, 1),
  (1578, 1),
  (301, 1),
  (2990, 1),
  (1201, 1),
  (691, 1),
  (2614, 1),
  (439, 1),
  (185, 1),
  (1851, 1),
  (61, 1),
  (1351, 1),
  (73, 1),
  (715, 1),
  (3023, 1),
  (2258, 1),
  (3027, 1),
  (84, 1),
  (342, 1),
  (599, 1),
  (1497, 1),
  (3370, 1),
  (93, 1),
  (2018, 1),
  (3939, 1),
  (3940, 1),
  (3941, 1),
  (3942, 1),
  (3943, 1),
  (3944, 1),
  (3945, 1),
  (3946, 1),
  (1131, 1),
  (749, 1),
  (83, 1),
  (120, 1),
  (250, 1),
  (42, 1),
  (383, 1)],
 [(290, 1),
  (4, 1),
  (326, 1),
  (1222, 1),
  (938, 1),
  (3948, 1),
  (397, 1),
  (1967, 1),
  (80, 1),
  (214, 1),
  (100, 1),
  (1146, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (397, 1),
  (14, 1),
  (529, 1),
  (1298, 1),
  (20, 1),
  (290, 1),
  (164, 1),
  (294, 1),
  (3953, 1),
  (3330, 1),
  (1324, 1),
  (48, 1),
  (54, 1),
  (439, 1),
  (187, 1),
  (60, 1),
  (1085, 1),
  (62, 1),
  (449, 1),
  (73, 1),
  (1483, 1),
  (207, 1),
  (654, 1),
  (100, 1),
  (492, 1),
  (3949, 1),
  (3950, 1),
  (3951, 1),
  (3952, 1),
  (113, 1),
  (3954, 1),
  (3955, 1),
  (1652, 1),
  (888, 1),
  (377, 1),
  (123, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (645, 1),
  (1281, 1),
  (1549, 1),
  (14, 1),
  (16, 1),
  (145, 1),
  (24, 1),
  (26, 1),
  (2593, 1),
  (169, 1),
  (562, 1),
  (564, 1),
  (54, 1),
  (330, 1),
  (338, 1),
  (981, 1),
  (861, 1),
  (479, 1),
  (1120, 1),
  (1508, 1),
  (3056, 1),
  (3956, 1),
  (3957, 1),
  (3958, 1),
  (2168, 1),
  (762, 1)],
 [(240, 1), (73, 1), (4, 1), (13, 1), (110, 1)],
 [(1, 1),
  (4, 1),
  (1125, 1),
  (73, 1),
  (682, 1),
  (333, 1),
  (942, 1),
  (284, 1),
  (1393, 1),
  (1428, 1),
  (1206, 1),
  (2196, 1),
  (60, 1),
  (285, 1)],
 [(1, 1),
  (1891, 1),
  (536, 1),
  (2401, 1),
  (968, 1),
  (169, 1),
  (143, 1),
  (2024, 1),
  (3959, 1),
  (3960, 1),
  (3961, 1),
  (1192, 1)],
 [(3968, 1),
  (1, 1),
  (2, 1),
  (3, 1),
  (4, 1),
  (3969, 1),
  (128, 1),
  (267, 1),
  (13, 1),
  (783, 1),
  (792, 1),
  (2067, 1),
  (1044, 1),
  (149, 1),
  (24, 1),
  (1575, 1),
  (1068, 1),
  (48, 1),
  (182, 1),
  (61, 1),
  (968, 1),
  (73, 1),
  (459, 1),
  (2638, 1),
  (94, 1),
  (95, 1),
  (99, 1),
  (244, 1),
  (120, 1),
  (3962, 1),
  (3963, 1),
  (3964, 1),
  (3965, 1),
  (3966, 1),
  (3967, 1)],
 [(3970, 1),
  (100, 1),
  (10, 1),
  (48, 1),
  (182, 1),
  (567, 1),
  (4, 1),
  (1147, 1)],
 [(128, 1),
  (330, 1),
  (946, 1),
  (335, 1),
  (306, 1),
  (180, 1),
  (117, 1),
  (602, 1),
  (1147, 1)],
 [(187, 1),
  (4, 1),
  (2597, 1),
  (169, 1),
  (330, 1),
  (2572, 1),
  (150, 1),
  (121, 1),
  (602, 1),
  (54, 1),
  (94, 1)],
 [(1, 1),
  (2, 1),
  (3971, 1),
  (3972, 1),
  (3973, 1),
  (262, 1),
  (903, 1),
  (3976, 1),
  (30, 1),
  (1165, 1),
  (557, 1),
  (146, 1),
  (920, 1),
  (4, 1),
  (900, 1),
  (28, 1),
  (670, 1),
  (931, 1),
  (932, 1),
  (3974, 1),
  (3975, 1),
  (173, 1),
  (1583, 1),
  (50, 1),
  (180, 1),
  (2485, 1),
  (187, 1),
  (60, 1),
  (317, 1),
  (1219, 1),
  (327, 1),
  (1225, 1),
  (1612, 1),
  (461, 1),
  (3469, 1),
  (1490, 1),
  (347, 1),
  (93, 1),
  (738, 1),
  (483, 1),
  (769, 1),
  (2165, 1),
  (119, 1),
  (2424, 1),
  (126, 1)],
 [(33, 1),
  (1, 1),
  (2437, 1),
  (1030, 1),
  (1254, 1),
  (3977, 1),
  (151, 1),
  (236, 1),
  (681, 1),
  (153, 1),
  (380, 1),
  (2438, 1)],
 [(4, 1),
  (2694, 1),
  (3978, 1),
  (939, 1),
  (2284, 1),
  (3821, 1),
  (558, 1),
  (180, 1),
  (3926, 1),
  (567, 1),
  (25, 1),
  (602, 1),
  (123, 1)],
 [(1, 1),
  (3074, 1),
  (4, 1),
  (3979, 1),
  (3980, 1),
  (24, 1),
  (283, 1),
  (29, 1),
  (30, 1),
  (292, 1),
  (808, 1),
  (48, 1),
  (949, 1),
  (54, 1),
  (185, 1),
  (447, 1),
  (1984, 1),
  (182, 1),
  (73, 1),
  (1483, 1),
  (1507, 1),
  (855, 1),
  (1572, 1),
  (2268, 1),
  (739, 1),
  (999, 1),
  (487, 1),
  (2284, 1),
  (120, 1),
  (764, 1)],
 [(1, 1),
  (4, 1),
  (3981, 1),
  (945, 1),
  (499, 1),
  (340, 1),
  (182, 1),
  (184, 1),
  (2555, 1)],
 [(1, 1),
  (774, 1),
  (13, 1),
  (3982, 1),
  (3983, 1),
  (3984, 1),
  (3985, 1),
  (3986, 1),
  (24, 1),
  (3354, 1),
  (34, 1),
  (3114, 1),
  (44, 1),
  (48, 1),
  (178, 1),
  (182, 1),
  (1851, 1),
  (60, 1),
  (1598, 1),
  (1345, 1),
  (2758, 1),
  (77, 1),
  (459, 1),
  (1314, 1),
  (463, 1),
  (2651, 1),
  (480, 1),
  (1039, 1),
  (244, 1),
  (757, 1),
  (120, 1),
  (1789, 1)],
 [(1, 1),
  (2, 1),
  (649, 1),
  (151, 1),
  (13, 1),
  (173, 1),
  (3987, 1),
  (3988, 1),
  (149, 1),
  (3990, 1),
  (3991, 1),
  (3992, 1),
  (937, 1),
  (44, 1),
  (50, 1),
  (48, 1),
  (178, 1),
  (439, 1),
  (573, 1),
  (330, 1),
  (75, 1),
  (341, 1),
  (228, 1),
  (370, 1),
  (383, 1),
  (3989, 1)],
 [(1, 1),
  (1740, 1),
  (182, 1),
  (2855, 1),
  (1452, 1),
  (12, 1),
  (3085, 1),
  (13, 1),
  (80, 1),
  (1524, 1),
  (48, 1),
  (150, 1),
  (143, 1),
  (764, 1)],
 [(128, 1),
  (1, 1),
  (899, 1),
  (261, 1),
  (774, 1),
  (649, 1),
  (3018, 1),
  (29, 1),
  (13, 1),
  (207, 1),
  (178, 1),
  (3190, 1),
  (3993, 1),
  (2586, 1),
  (582, 1),
  (61, 1),
  (581, 1)],
 [(1, 1),
  (2947, 1),
  (1797, 1),
  (2182, 1),
  (131, 1),
  (1309, 1),
  (149, 1),
  (150, 1),
  (151, 1),
  (3994, 1),
  (3995, 1),
  (3996, 1),
  (3997, 1),
  (3998, 1),
  (932, 1),
  (1830, 1),
  (156, 1),
  (45, 1),
  (1327, 1),
  (48, 1),
  (2737, 1),
  (50, 1),
  (439, 1),
  (1852, 1),
  (62, 1),
  (1472, 1),
  (988, 1),
  (613, 1),
  (60, 1),
  (2284, 1),
  (877, 1),
  (1647, 1),
  (759, 1),
  (1017, 1),
  (125, 1)],
 [(1090, 1),
  (1027, 1),
  (4, 1),
  (1097, 1),
  (2, 1),
  (93, 1),
  (463, 1),
  (146, 1),
  (787, 1),
  (3732, 1),
  (1358, 1),
  (573, 1)],
 [(675, 1),
  (182, 1),
  (262, 1),
  (73, 1),
  (2417, 1),
  (99, 1),
  (150, 1),
  (120, 1),
  (3643, 1),
  (2429, 1)],
 [(4000, 1),
  (4001, 1),
  (2, 1),
  (771, 1),
  (48, 1),
  (869, 1),
  (262, 1),
  (1, 1),
  (808, 1),
  (3561, 1),
  (439, 1),
  (1997, 1),
  (176, 1),
  (3769, 1),
  (2917, 1),
  (599, 1),
  (1017, 1),
  (33, 1),
  (317, 1),
  (4, 1),
  (3999, 1)],
 [(1792, 1),
  (4, 1),
  (3717, 1),
  (134, 1),
  (2574, 1),
  (145, 1),
  (20, 1),
  (153, 1),
  (1967, 1),
  (2590, 1),
  (799, 1),
  (1312, 1),
  (48, 1),
  (4002, 1),
  (4003, 1),
  (4004, 1),
  (4005, 1),
  (4006, 1),
  (4007, 1),
  (4008, 1),
  (4009, 1),
  (4010, 1),
  (4011, 1),
  (4012, 1),
  (4013, 1),
  (4014, 1),
  (4015, 1),
  (4016, 1),
  (4017, 1),
  (4018, 1),
  (4019, 1),
  (4020, 1),
  (4021, 1),
  (4022, 1),
  (283, 1),
  (185, 1),
  (187, 1),
  (447, 1),
  (3140, 1),
  (1351, 1),
  (74, 1),
  (207, 1),
  (727, 1),
  (347, 1),
  (222, 1),
  (2404, 1),
  (1125, 1),
  (106, 1),
  (237, 1),
  (2801, 1),
  (113, 1),
  (1017, 1),
  (1386, 1),
  (1791, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (394, 1),
  (13, 1),
  (150, 1),
  (2590, 1),
  (48, 1),
  (1073, 1),
  (1206, 1),
  (4023, 1),
  (4024, 1),
  (4025, 1),
  (1342, 1),
  (327, 1),
  (73, 1),
  (977, 1),
  (1363, 1),
  (1499, 1),
  (479, 1),
  (483, 1),
  (3172, 1),
  (103, 1),
  (618, 1),
  (878, 1),
  (2238, 1)],
 [(128, 1),
  (48, 1),
  (2, 1),
  (4, 1),
  (649, 1),
  (13, 1),
  (1133, 1),
  (1519, 1),
  (240, 1),
  (54, 1),
  (100, 1),
  (4026, 1),
  (1615, 1),
  (447, 1)],
 [(1, 1),
  (1281, 1),
  (1033, 1),
  (910, 1),
  (16, 1),
  (2196, 1),
  (917, 1),
  (33, 1),
  (169, 1),
  (2286, 1),
  (55, 1),
  (4027, 1),
  (4028, 1),
  (4029, 1),
  (4030, 1),
  (4031, 1),
  (709, 1),
  (3805, 1),
  (94, 1),
  (187, 1),
  (2917, 1),
  (999, 1),
  (60, 1),
  (234, 1),
  (1255, 1),
  (110, 1),
  (754, 1),
  (1017, 1)],
 [(4032, 1), (37, 1), (1646, 1), (701, 1), (1973, 1), (573, 1)],
 [(4033, 1),
  (2, 1),
  (2915, 1),
  (133, 1),
  (1, 1),
  (73, 1),
  (1452, 1),
  (77, 1),
  (867, 1),
  (764, 1),
  (2301, 1),
  (2111, 1)],
 [(1312, 1),
  (4034, 1),
  (3747, 1),
  (4, 1),
  (2757, 1),
  (169, 1),
  (234, 1),
  (1740, 1),
  (13, 1),
  (1647, 1),
  (176, 1),
  (50, 1),
  (4035, 1),
  (150, 1),
  (1271, 1),
  (3960, 1),
  (2038, 1),
  (602, 1),
  (123, 1),
  (658, 1),
  (670, 1)],
 [(256, 1),
  (1, 1),
  (2179, 1),
  (4, 1),
  (54, 1),
  (3897, 1),
  (78, 1),
  (368, 1),
  (403, 1),
  (342, 1),
  (150, 1),
  (1497, 1),
  (1572, 1),
  (123, 1),
  (3070, 1),
  (2943, 1)],
 [(4, 1),
  (1035, 1),
  (653, 1),
  (143, 1),
  (2320, 1),
  (529, 1),
  (147, 1),
  (151, 1),
  (30, 1),
  (36, 1),
  (38, 1),
  (551, 1),
  (808, 1),
  (1194, 1),
  (1327, 1),
  (48, 1),
  (561, 1),
  (178, 1),
  (3764, 1),
  (822, 1),
  (573, 1),
  (446, 1),
  (1603, 1),
  (4036, 1),
  (4037, 1),
  (141, 1),
  (210, 1),
  (207, 1),
  (106, 1),
  (1132, 1),
  (61, 1),
  (117, 1),
  (250, 1),
  (383, 1)],
 [(1, 1), (518, 1), (330, 1), (13, 1), (143, 1), (1045, 1), (150, 1), (55, 1)],
 [(128, 1),
  (2, 1),
  (2293, 1),
  (4, 1),
  (1033, 1),
  (30, 1),
  (397, 1),
  (2191, 1),
  (1938, 1),
  (771, 1),
  (788, 1),
  (21, 1),
  (1174, 1),
  (25, 1),
  (670, 1),
  (34, 1),
  (2865, 1),
  (169, 1),
  (1653, 1),
  (4040, 1),
  (1077, 1),
  (182, 1),
  (439, 1),
  (2506, 1),
  (2997, 1),
  (2501, 1),
  (4038, 1),
  (4039, 1),
  (1736, 1),
  (4041, 1),
  (4042, 1),
  (4043, 1),
  (77, 1),
  (13, 1),
  (1489, 1),
  (1234, 1),
  (979, 1),
  (342, 1),
  (309, 1),
  (603, 1),
  (123, 1),
  (2024, 1),
  (618, 1),
  (73, 1),
  (1524, 1),
  (117, 1),
  (120, 1),
  (255, 1),
  (2431, 1)],
 [(128, 1),
  (1, 1),
  (4, 1),
  (207, 1),
  (2056, 1),
  (13, 1),
  (142, 1),
  (143, 1),
  (785, 1),
  (529, 1),
  (1045, 1),
  (150, 1),
  (461, 1),
  (670, 1),
  (31, 1),
  (672, 1),
  (34, 1),
  (4050, 1),
  (294, 1),
  (2217, 1),
  (176, 1),
  (946, 1),
  (30, 1),
  (182, 1),
  (60, 1),
  (61, 1),
  (447, 1),
  (449, 1),
  (195, 1),
  (1348, 1),
  (709, 1),
  (4047, 1),
  (841, 1),
  (459, 1),
  (4044, 1),
  (4045, 1),
  (4046, 1),
  (141, 1),
  (4048, 1),
  (4049, 1),
  (466, 1),
  (4051, 1),
  (4052, 1),
  (2267, 1),
  (486, 1),
  (103, 1),
  (618, 1),
  (2411, 1),
  (365, 1),
  (1648, 1),
  (116, 1),
  (246, 1),
  (123, 1),
  (1021, 1),
  (789, 1)],
 [(1, 1), (2454, 1), (10, 1), (4053, 1), (182, 1), (150, 1)],
 [(515, 1),
  (4, 1),
  (1158, 1),
  (104, 1),
  (73, 1),
  (234, 1),
  (335, 1),
  (50, 1),
  (4054, 1),
  (4055, 1),
  (4056, 1),
  (1519, 1)],
 [(1, 1),
  (520, 1),
  (140, 1),
  (2958, 1),
  (143, 1),
  (144, 1),
  (150, 1),
  (151, 1),
  (2338, 1),
  (548, 1),
  (550, 1),
  (681, 1),
  (42, 1),
  (1469, 1),
  (1342, 1),
  (1483, 1),
  (4057, 1),
  (4058, 1),
  (4059, 1),
  (94, 1),
  (743, 1),
  (234, 1),
  (1194, 1)],
 [(1, 1),
  (4, 1),
  (2182, 1),
  (13, 1),
  (14, 1),
  (2065, 1),
  (20, 1),
  (24, 1),
  (1309, 1),
  (1825, 1),
  (290, 1),
  (3367, 1),
  (169, 1),
  (170, 1),
  (178, 1),
  (180, 1),
  (2489, 1),
  (34, 1),
  (4060, 1),
  (4061, 1),
  (479, 1),
  (608, 1),
  (610, 1),
  (997, 1),
  (877, 1),
  (116, 1),
  (117, 1),
  (120, 1),
  (1402, 1),
  (127, 1)],
 [(1, 1),
  (2, 1),
  (2051, 1),
  (2182, 1),
  (1287, 1),
  (13, 1),
  (150, 1),
  (3613, 1),
  (30, 1),
  (2084, 1),
  (293, 1),
  (3367, 1),
  (1320, 1),
  (173, 1),
  (48, 1),
  (1585, 1),
  (449, 1),
  (1596, 1),
  (61, 1),
  (321, 1),
  (2885, 1),
  (73, 1),
  (2638, 1),
  (2641, 1),
  (1362, 1),
  (4059, 1),
  (37, 1),
  (4062, 1),
  (4063, 1),
  (480, 1),
  (1255, 1),
  (2855, 1),
  (2258, 1),
  (239, 1),
  (764, 1)],
 [(4064, 1),
  (1, 1),
  (1123, 1),
  (48, 1),
  (1254, 1),
  (4065, 1),
  (1449, 1),
  (77, 1),
  (720, 1),
  (50, 1),
  (1938, 1),
  (340, 1),
  (182, 1),
  (24, 1),
  (3449, 1),
  (123, 1),
  (61, 1),
  (30, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (900, 1),
  (1797, 1),
  (778, 1),
  (3723, 1),
  (1804, 1),
  (13, 1),
  (143, 1),
  (1298, 1),
  (2196, 1),
  (610, 1),
  (4, 1),
  (3939, 1),
  (28, 1),
  (2845, 1),
  (674, 1),
  (675, 1),
  (37, 1),
  (169, 1),
  (45, 1),
  (99, 1),
  (307, 1),
  (1973, 1),
  (315, 1),
  (446, 1),
  (1345, 1),
  (73, 1),
  (34, 1),
  (109, 1),
  (1363, 1),
  (214, 1),
  (983, 1),
  (93, 1),
  (1637, 1),
  (96, 1),
  (4066, 1),
  (4067, 1),
  (4068, 1),
  (4069, 1),
  (4070, 1),
  (4071, 1),
  (616, 1),
  (106, 1),
  (1938, 1),
  (1646, 1),
  (244, 1),
  (119, 1),
  (1656, 1),
  (2425, 1),
  (1147, 1),
  (234, 1),
  (126, 1)],
 [(1, 1),
  (195, 1),
  (4072, 1),
  (4073, 1),
  (463, 1),
  (497, 1),
  (178, 1),
  (169, 1),
  (601, 1),
  (1147, 1),
  (479, 1)],
 [(1, 1),
  (1891, 1),
  (903, 1),
  (2024, 1),
  (73, 1),
  (4074, 1),
  (4075, 1),
  (1197, 1),
  (1507, 1),
  (244, 1),
  (267, 1),
  (602, 1),
  (2299, 1),
  (93, 1),
  (94, 1)],
 [(33, 1),
  (4076, 1),
  (198, 1),
  (2024, 1),
  (169, 1),
  (1707, 1),
  (140, 1),
  (1197, 1),
  (110, 1),
  (1615, 1),
  (144, 1),
  (2152, 1),
  (146, 1),
  (215, 1),
  (3710, 1),
  (599, 1),
  (1288, 1),
  (2649, 1),
  (121, 1),
  (1181, 1),
  (926, 1)],
 [(4, 1),
  (262, 1),
  (2571, 1),
  (142, 1),
  (16, 1),
  (926, 1),
  (2208, 1),
  (33, 1),
  (1197, 1),
  (76, 1),
  (207, 1),
  (1362, 1),
  (725, 1),
  (2649, 1),
  (463, 1),
  (144, 1),
  (103, 1),
  (2024, 1),
  (4077, 1),
  (4078, 1),
  (4079, 1),
  (119, 1),
  (1615, 1)],
 [(1, 1), (3044, 1), (142, 1), (815, 1), (981, 1), (151, 1), (24, 1)],
 [(4080, 1),
  (1474, 1),
  (4, 1),
  (3030, 1),
  (2726, 1),
  (321, 1),
  (60, 1),
  (2, 1),
  (182, 1),
  (125, 1),
  (240, 1),
  (1875, 1),
  (1076, 1),
  (214, 1),
  (2281, 1),
  (24, 1),
  (1658, 1),
  (38, 1),
  (764, 1),
  (218, 1),
  (1791, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (3, 1),
  (4, 1),
  (261, 1),
  (1158, 1),
  (343, 1),
  (1549, 1),
  (145, 1),
  (1938, 1),
  (662, 1),
  (536, 1),
  (1181, 1),
  (926, 1),
  (33, 1),
  (1956, 1),
  (113, 1),
  (1838, 1),
  (176, 1),
  (691, 1),
  (1590, 1),
  (567, 1),
  (4084, 1),
  (1211, 1),
  (123, 1),
  (1142, 1),
  (3140, 1),
  (2870, 1),
  (1351, 1),
  (73, 1),
  (187, 1),
  (439, 1),
  (1869, 1),
  (848, 1),
  (3537, 1),
  (342, 1),
  (3193, 1),
  (600, 1),
  (932, 1),
  (93, 1),
  (246, 1),
  (4091, 1),
  (100, 1),
  (2321, 1),
  (2407, 1),
  (2284, 1),
  (1902, 1),
  (239, 1),
  (4081, 1),
  (4082, 1),
  (4083, 1),
  (116, 1),
  (4085, 1),
  (4086, 1),
  (4087, 1),
  (4088, 1),
  (4089, 1),
  (4090, 1),
  (119, 1),
  (4092, 1),
  (4093, 1),
  (4094, 1),
  (4095, 1)],
 [(4096, 1),
  (1, 1),
  (4098, 1),
  (4099, 1),
  (4, 1),
  (262, 1),
  (903, 1),
  (128, 1),
  (523, 1),
  (13, 1),
  (277, 1),
  (150, 1),
  (4100, 1),
  (4097, 1),
  (293, 1),
  (2990, 1),
  (180, 1),
  (439, 1),
  (1976, 1),
  (3770, 1),
  (187, 1),
  (3142, 1),
  (968, 1),
  (73, 1),
  (1483, 1),
  (209, 1),
  (341, 1),
  (602, 1),
  (867, 1),
  (103, 1),
  (999, 1),
  (492, 1),
  (1008, 1),
  (244, 1),
  (1781, 1),
  (119, 1)],
 [(1, 1),
  (2915, 1),
  (101, 1),
  (73, 1),
  (205, 1),
  (557, 1),
  (48, 1),
  (4101, 1),
  (4019, 1),
  (1278, 1),
  (2870, 1),
  (2477, 1),
  (720, 1),
  (446, 1),
  (927, 1)],
 [(1, 1),
  (867, 1),
  (103, 1),
  (1132, 1),
  (815, 1),
  (1938, 1),
  (661, 1),
  (567, 1)],
 [(2, 1),
  (867, 1),
  (4, 1),
  (3702, 1),
  (73, 1),
  (567, 1),
  (144, 1),
  (1590, 1),
  (4087, 1),
  (119, 1),
  (93, 1),
  (182, 1)],
 [(169, 1), (50, 1), (867, 1), (1205, 1), (150, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (4102, 1),
  (1158, 1),
  (263, 1),
  (1032, 1),
  (73, 1),
  (4103, 1),
  (396, 1),
  (1122, 1),
  (13, 1),
  (176, 1),
  (573, 1),
  (565, 1),
  (214, 1),
  (169, 1),
  (3186, 1),
  (93, 1),
  (0, 1)],
 [(1, 1),
  (264, 1),
  (4105, 1),
  (4106, 1),
  (4107, 1),
  (141, 1),
  (14, 1),
  (4056, 1),
  (2834, 1),
  (562, 1),
  (4104, 1),
  (50, 1),
  (182, 1),
  (187, 1),
  (335, 1),
  (3540, 1),
  (600, 1),
  (93, 1),
  (94, 1),
  (110, 1),
  (243, 1),
  (117, 1),
  (119, 1)],
 [(128, 1),
  (1, 1),
  (4, 1),
  (4108, 1),
  (13, 1),
  (144, 1),
  (529, 1),
  (1938, 1),
  (147, 1),
  (150, 1),
  (25, 1),
  (153, 1),
  (667, 1),
  (1181, 1),
  (1443, 1),
  (45, 1),
  (176, 1),
  (2100, 1),
  (1973, 1),
  (321, 1),
  (459, 1),
  (4109, 1),
  (600, 1),
  (601, 1),
  (93, 1),
  (94, 1),
  (867, 1),
  (103, 1),
  (2194, 1),
  (1902, 1),
  (2431, 1)],
 [(1, 1),
  (2694, 1),
  (487, 1),
  (968, 1),
  (1129, 1),
  (523, 1),
  (240, 1),
  (627, 1),
  (117, 1)],
 [(384, 1),
  (1, 1),
  (1572, 1),
  (1477, 1),
  (4112, 1),
  (321, 1),
  (616, 1),
  (169, 1),
  (4110, 1),
  (4111, 1),
  (48, 1),
  (4113, 1),
  (4114, 1),
  (567, 1),
  (248, 1),
  (602, 1),
  (187, 1),
  (670, 1)],
 [(3, 1),
  (1, 1),
  (2, 1),
  (1443, 1),
  (36, 1),
  (182, 1),
  (999, 1),
  (259, 1),
  (73, 1),
  (362, 1),
  (18, 1),
  (1421, 1),
  (1073, 1),
  (1234, 1),
  (4115, 1),
  (4116, 1),
  (470, 1),
  (855, 1),
  (1193, 1),
  (602, 1),
  (2430, 1)],
 [(1, 1), (2695, 1), (144, 1), (779, 1), (14, 1), (1199, 1), (48, 1)],
 [(1, 1),
  (22, 1),
  (900, 1),
  (1797, 1),
  (262, 1),
  (1799, 1),
  (10, 1),
  (4119, 1),
  (13, 1),
  (1680, 1),
  (4117, 1),
  (150, 1),
  (151, 1),
  (4120, 1),
  (4118, 1),
  (26, 1),
  (30, 1),
  (1669, 1),
  (3360, 1),
  (774, 1),
  (808, 1),
  (557, 1),
  (944, 1),
  (2865, 1),
  (55, 1),
  (317, 1),
  (62, 1),
  (1120, 1),
  (1740, 1),
  (1106, 1),
  (600, 1),
  (480, 1),
  (226, 1),
  (234, 1)],
 [(1, 1), (388, 1), (104, 1), (14, 1), (48, 1), (538, 1)],
 [(73, 1), (1, 1)],
 [(1, 1),
  (2, 1),
  (2563, 1),
  (4, 1),
  (1286, 1),
  (269, 1),
  (14, 1),
  (16, 1),
  (273, 1),
  (248, 1),
  (147, 1),
  (151, 1),
  (24, 1),
  (25, 1),
  (4122, 1),
  (4123, 1),
  (4124, 1),
  (4125, 1),
  (30, 1),
  (543, 1),
  (4128, 1),
  (1947, 1),
  (1572, 1),
  (1830, 1),
  (808, 1),
  (1193, 1),
  (2730, 1),
  (173, 1),
  (302, 1),
  (816, 1),
  (50, 1),
  (180, 1),
  (4126, 1),
  (182, 1),
  (439, 1),
  (2079, 1),
  (60, 1),
  (4127, 1),
  (207, 1),
  (1016, 1),
  (1490, 1),
  (981, 1),
  (348, 1),
  (222, 1),
  (479, 1),
  (827, 1),
  (492, 1),
  (1133, 1),
  (1646, 1),
  (4121, 1),
  (1144, 1),
  (121, 1),
  (2098, 1)],
 [(1, 1), (2079, 1), (4, 1), (4129, 1), (23, 1)],
 [(1, 1),
  (2, 1),
  (167, 1),
  (73, 1),
  (48, 1),
  (497, 1),
  (691, 1),
  (545, 1),
  (1129, 1),
  (3489, 1),
  (721, 1),
  (93, 1)],
 [(4130, 1),
  (4131, 1),
  (4132, 1),
  (2146, 1),
  (73, 1),
  (1015, 1),
  (930, 1),
  (589, 1),
  (1571, 1),
  (146, 1),
  (2291, 1),
  (244, 1),
  (341, 1),
  (1193, 1),
  (345, 1),
  (1435, 1),
  (4133, 1)],
 [(1, 1),
  (487, 1),
  (169, 1),
  (13, 1),
  (14, 1),
  (48, 1),
  (562, 1),
  (246, 1),
  (1577, 1),
  (26, 1)],
 [(1, 1),
  (642, 1),
  (259, 1),
  (4, 1),
  (3595, 1),
  (1165, 1),
  (670, 1),
  (3870, 1),
  (4134, 1),
  (4135, 1),
  (4136, 1),
  (169, 1),
  (4138, 1),
  (4139, 1),
  (4140, 1),
  (50, 1),
  (565, 1),
  (57, 1),
  (573, 1),
  (1477, 1),
  (3027, 1),
  (1367, 1),
  (482, 1),
  (552, 1),
  (2674, 1),
  (4137, 1)],
 [(1, 1),
  (259, 1),
  (4, 1),
  (449, 1),
  (780, 1),
  (14, 1),
  (16, 1),
  (788, 1),
  (22, 1),
  (153, 1),
  (24, 1),
  (25, 1),
  (538, 1),
  (90, 1),
  (670, 1),
  (33, 1),
  (550, 1),
  (1193, 1),
  (4141, 1),
  (302, 1),
  (182, 1),
  (827, 1),
  (573, 1),
  (62, 1),
  (1345, 1),
  (1477, 1),
  (455, 1),
  (72, 1),
  (73, 1),
  (330, 1),
  (3151, 1),
  (725, 1),
  (169, 1),
  (602, 1),
  (3291, 1),
  (1830, 1),
  (103, 1),
  (12, 1),
  (125, 1),
  (241, 1),
  (140, 1),
  (117, 1),
  (2934, 1),
  (759, 1),
  (248, 1),
  (509, 1)],
 [(1, 1), (1477, 1), (397, 1), (4142, 1), (48, 1), (60, 1)],
 [(1, 1),
  (2, 1),
  (2051, 1),
  (4, 1),
  (3592, 1),
  (1033, 1),
  (12, 1),
  (13, 1),
  (1552, 1),
  (24, 1),
  (26, 1),
  (3102, 1),
  (36, 1),
  (37, 1),
  (3623, 1),
  (2226, 1),
  (4143, 1),
  (48, 1),
  (4145, 1),
  (4146, 1),
  (4147, 1),
  (4148, 1),
  (4149, 1),
  (4150, 1),
  (9, 1),
  (4152, 1),
  (4153, 1),
  (4154, 1),
  (4155, 1),
  (4156, 1),
  (61, 1),
  (4158, 1),
  (4159, 1),
  (4160, 1),
  (4161, 1),
  (4162, 1),
  (4163, 1),
  (602, 1),
  (1119, 1),
  (1646, 1),
  (626, 1),
  (1139, 1),
  (119, 1),
  (123, 1),
  (136, 1),
  (1163, 1),
  (140, 1),
  (1680, 1),
  (1683, 1),
  (149, 1),
  (3229, 1),
  (677, 1),
  (1198, 1),
  (1201, 1),
  (690, 1),
  (180, 1),
  (30, 1),
  (185, 1),
  (187, 1),
  (198, 1),
  (203, 1),
  (729, 1),
  (293, 1),
  (229, 1),
  (234, 1),
  (246, 1),
  (1275, 1),
  (557, 1),
  (788, 1),
  (4144, 1),
  (2338, 1),
  (1829, 1),
  (298, 1),
  (1337, 1),
  (314, 1),
  (317, 1),
  (1344, 1),
  (3911, 1),
  (4151, 1),
  (1338, 1),
  (1902, 1),
  (4157, 1),
  (1404, 1),
  (385, 1),
  (389, 1),
  (1516, 1),
  (1421, 1),
  (910, 1),
  (920, 1),
  (935, 1),
  (1449, 1),
  (1455, 1),
  (446, 1),
  (3010, 1),
  (3018, 1),
  (465, 1),
  (472, 1),
  (1503, 1),
  (482, 1),
  (487, 1),
  (3563, 1),
  (1004, 1)],
 [(2, 1),
  (3747, 1),
  (4164, 1),
  (4165, 1),
  (23, 1),
  (16, 1),
  (2067, 1),
  (150, 1),
  (55, 1),
  (24, 1),
  (764, 1),
  (61, 1)],
 [(1568, 1),
  (1, 1),
  (932, 1),
  (1477, 1),
  (4166, 1),
  (2919, 1),
  (616, 1),
  (73, 1),
  (128, 1),
  (4167, 1),
  (146, 1),
  (1106, 1),
  (196, 1),
  (1814, 1),
  (55, 1),
  (3480, 1),
  (164, 1),
  (26, 1),
  (60, 1),
  (602, 1),
  (670, 1)],
 [(1, 1), (1345, 1)],
 [(1, 1),
  (642, 1),
  (4, 1),
  (1222, 1),
  (10, 1),
  (61, 1),
  (48, 1),
  (117, 1),
  (23, 1),
  (125, 1),
  (94, 1)],
 [(128, 1),
  (1, 1),
  (259, 1),
  (2695, 1),
  (1165, 1),
  (15, 1),
  (410, 1),
  (670, 1),
  (1193, 1),
  (48, 1),
  (182, 1),
  (567, 1),
  (60, 1),
  (4168, 1),
  (4169, 1),
  (4170, 1),
  (4171, 1),
  (719, 1),
  (602, 1),
  (143, 1),
  (94, 1),
  (1506, 1),
  (1127, 1),
  (1137, 1),
  (2165, 1),
  (3710, 1)],
 [(1, 1),
  (642, 1),
  (259, 1),
  (1540, 1),
  (1381, 1),
  (1552, 1),
  (24, 1),
  (25, 1),
  (602, 1),
  (3870, 1),
  (1312, 1),
  (167, 1),
  (809, 1),
  (48, 1),
  (945, 1),
  (50, 1),
  (3635, 1),
  (182, 1),
  (73, 1),
  (60, 1),
  (61, 1),
  (1091, 1),
  (1477, 1),
  (1100, 1),
  (4172, 1),
  (4173, 1),
  (4174, 1),
  (218, 1),
  (1375, 1),
  (613, 1),
  (1193, 1),
  (248, 1)],
 [(1537, 1),
  (2, 1),
  (259, 1),
  (4, 1),
  (1, 1),
  (648, 1),
  (1035, 1),
  (2828, 1),
  (1410, 1),
  (14, 1),
  (1552, 1),
  (1942, 1),
  (1071, 1),
  (670, 1),
  (1571, 1),
  (1572, 1),
  (806, 1),
  (1193, 1),
  (903, 1),
  (1455, 1),
  (48, 1),
  (50, 1),
  (30, 1),
  (841, 1),
  (443, 1),
  (60, 1),
  (100, 1),
  (3141, 1),
  (73, 1),
  (1995, 1),
  (4175, 1),
  (4176, 1),
  (4177, 1),
  (210, 1),
  (4179, 1),
  (4180, 1),
  (4181, 1),
  (4182, 1),
  (4183, 1),
  (4184, 1),
  (4185, 1),
  (602, 1),
  (93, 1),
  (16, 1),
  (1508, 1),
  (486, 1),
  (1127, 1),
  (1129, 1),
  (106, 1),
  (103, 1),
  (4178, 1),
  (1902, 1),
  (245, 1),
  (596, 1),
  (123, 1),
  (1788, 1),
  (1534, 1),
  (127, 1)],
 [(128, 1),
  (1826, 1),
  (2179, 1),
  (4, 1),
  (167, 1),
  (264, 1),
  (73, 1),
  (4171, 1),
  (428, 1),
  (600, 1),
  (335, 1),
  (48, 1),
  (24, 1),
  (1010, 1),
  (259, 1),
  (1752, 1),
  (1572, 1),
  (1681, 1),
  (1191, 1)],
 [(512, 1),
  (2691, 1),
  (4, 1),
  (2695, 1),
  (13, 1),
  (526, 1),
  (149, 1),
  (23, 1),
  (602, 1),
  (670, 1),
  (2975, 1),
  (176, 1),
  (2217, 1),
  (173, 1),
  (4189, 1),
  (48, 1),
  (690, 1),
  (4190, 1),
  (54, 1),
  (60, 1),
  (61, 1),
  (73, 1),
  (4186, 1),
  (4187, 1),
  (4188, 1),
  (93, 1),
  (94, 1),
  (1503, 1),
  (752, 1),
  (169, 1),
  (3710, 1)],
 [(4192, 1),
  (48, 1),
  (2082, 1),
  (259, 1),
  (1572, 1),
  (2757, 1),
  (648, 1),
  (1193, 1),
  (128, 1),
  (247, 1),
  (910, 1),
  (176, 1),
  (4177, 1),
  (3540, 1),
  (213, 1),
  (1399, 1),
  (1128, 1),
  (538, 1),
  (60, 1),
  (670, 1),
  (4191, 1)],
 [(1, 1),
  (2192, 1),
  (277, 1),
  (4119, 1),
  (25, 1),
  (1563, 1),
  (602, 1),
  (670, 1),
  (33, 1),
  (1443, 1),
  (1193, 1),
  (48, 1),
  (306, 1),
  (182, 1),
  (567, 1),
  (60, 1),
  (1729, 1),
  (1477, 1),
  (1222, 1),
  (73, 1),
  (720, 1),
  (3027, 1),
  (1882, 1),
  (54, 1),
  (1646, 1),
  (248, 1),
  (125, 1)],
 [(1, 1),
  (2, 1),
  (2187, 1),
  (268, 1),
  (1677, 1),
  (143, 1),
  (30, 1),
  (37, 1),
  (1320, 1),
  (169, 1),
  (1578, 1),
  (1638, 1),
  (48, 1),
  (182, 1),
  (1980, 1),
  (61, 1),
  (1982, 1),
  (1345, 1),
  (3020, 1),
  (588, 1),
  (84, 1),
  (1238, 1),
  (1017, 1),
  (602, 1),
  (2271, 1),
  (4193, 1),
  (4194, 1),
  (4195, 1),
  (4196, 1),
  (4197, 1),
  (4198, 1),
  (4199, 1),
  (2024, 1),
  (60, 1),
  (114, 1),
  (4085, 1),
  (468, 1),
  (3706, 1),
  (764, 1)],
 [(128, 1),
  (1346, 1),
  (4, 1),
  (73, 1),
  (13, 1),
  (14, 1),
  (150, 1),
  (55, 1),
  (602, 1),
  (2714, 1)],
 [(1152, 1), (1, 1), (259, 1), (4, 1), (173, 1), (207, 1)],
 [(1, 1),
  (2, 1),
  (3, 1),
  (4, 1),
  (48, 1),
  (80, 1),
  (841, 1),
  (330, 1),
  (110, 1),
  (176, 1),
  (4200, 1),
  (14, 1),
  (246, 1),
  (183, 1),
  (184, 1),
  (36, 1),
  (250, 1),
  (720, 1)],
 [(2, 1),
  (4201, 1),
  (4202, 1),
  (4203, 1),
  (4204, 1),
  (4205, 1),
  (4206, 1),
  (182, 1),
  (759, 1),
  (316, 1),
  (94, 1),
  (2079, 1)],
 [(1, 1), (2, 1), (759, 1), (3151, 1)],
 [(1, 1),
  (2, 1),
  (1923, 1),
  (4, 1),
  (3078, 1),
  (827, 1),
  (2572, 1),
  (13, 1),
  (408, 1),
  (819, 1),
  (2202, 1),
  (239, 1),
  (1434, 1),
  (30, 1),
  (2079, 1),
  (2103, 1),
  (34, 1),
  (421, 1),
  (169, 1),
  (558, 1),
  (562, 1),
  (4211, 1),
  (937, 1),
  (695, 1),
  (185, 1),
  (187, 1),
  (573, 1),
  (447, 1),
  (1858, 1),
  (182, 1),
  (3142, 1),
  (1991, 1),
  (1737, 1),
  (4215, 1),
  (333, 1),
  (3151, 1),
  (995, 1),
  (216, 1),
  (987, 1),
  (479, 1),
  (483, 1),
  (613, 1),
  (616, 1),
  (4207, 1),
  (4208, 1),
  (4209, 1),
  (4210, 1),
  (2291, 1),
  (4212, 1),
  (4213, 1),
  (4214, 1),
  (759, 1),
  (4216, 1),
  (4217, 1),
  (4218, 1),
  (382, 1)],
 [(996, 1),
  (1991, 1),
  (316, 1),
  (2701, 1),
  (562, 1),
  (759, 1),
  (169, 1),
  (4219, 1),
  (4220, 1)],
 [(928, 1),
  (1858, 1),
  (263, 1),
  (616, 1),
  (2, 1),
  (13, 1),
  (4207, 1),
  (2802, 1),
  (759, 1),
  (4221, 1)],
 [(4224, 1),
  (4225, 1),
  (2, 1),
  (146, 1),
  (1684, 1),
  (149, 1),
  (1321, 1),
  (562, 1),
  (307, 1),
  (54, 1),
  (316, 1),
  (2877, 1),
  (2120, 1),
  (73, 1),
  (2636, 1),
  (215, 1),
  (613, 1),
  (2788, 1),
  (229, 1),
  (616, 1),
  (759, 1),
  (1146, 1),
  (4222, 1),
  (4223, 1)],
 [(0, 1),
  (1858, 1),
  (613, 1),
  (616, 1),
  (73, 1),
  (1362, 1),
  (562, 1),
  (182, 1),
  (759, 1),
  (4217, 1)],
 [(0, 1),
  (128, 1),
  (4226, 1),
  (4227, 1),
  (4, 1),
  (4229, 1),
  (571, 1),
  (1, 1),
  (3465, 1),
  (10, 1),
  (13, 1),
  (77, 1),
  (529, 1),
  (999, 1),
  (4117, 1),
  (790, 1),
  (23, 1),
  (4228, 1),
  (1435, 1),
  (795, 1),
  (37, 1),
  (38, 1),
  (2855, 1),
  (1320, 1),
  (42, 1),
  (557, 1),
  (1070, 1),
  (1199, 1),
  (306, 1),
  (307, 1),
  (3764, 1),
  (182, 1),
  (439, 1),
  (440, 1),
  (315, 1),
  (60, 1),
  (1342, 1),
  (321, 1),
  (2, 1),
  (1206, 1),
  (649, 1),
  (330, 1),
  (333, 1),
  (1677, 1),
  (720, 1),
  (465, 1),
  (340, 1),
  (726, 1),
  (600, 1),
  (293, 1),
  (480, 1),
  (3920, 1),
  (443, 1),
  (3494, 1),
  (230, 1),
  (103, 1),
  (107, 1),
  (1132, 1),
  (2286, 1),
  (240, 1),
  (499, 1),
  (762, 1),
  (1147, 1),
  (661, 1)],
 [(261, 1),
  (4230, 1),
  (4231, 1),
  (4232, 1),
  (4233, 1),
  (394, 1),
  (15, 1),
  (3226, 1),
  (801, 1),
  (1570, 1),
  (2103, 1),
  (4234, 1),
  (69, 1),
  (1737, 1),
  (330, 1),
  (2636, 1),
  (78, 1),
  (1363, 1),
  (1769, 1),
  (573, 1),
  (759, 1),
  (3325, 1),
  (382, 1)],
 [(34, 1),
  (4235, 1),
  (2649, 1),
  (616, 1),
  (476, 1),
  (55, 1),
  (4236, 1),
  (759, 1),
  (1713, 1),
  (1364, 1),
  (2103, 1),
  (4217, 1),
  (316, 1)],
 [(2, 1),
  (4234, 1),
  (4235, 1),
  (4237, 1),
  (4238, 1),
  (4239, 1),
  (4240, 1),
  (4241, 1),
  (4242, 1),
  (23, 1),
  (2079, 1),
  (562, 1),
  (307, 1),
  (1603, 1),
  (331, 1),
  (333, 1),
  (867, 1),
  (340, 1),
  (1497, 1),
  (1123, 1),
  (996, 1),
  (613, 1),
  (1386, 1),
  (365, 1),
  (4209, 1),
  (759, 1),
  (4217, 1),
  (382, 1)],
 [(4243, 1),
  (1797, 1),
  (1351, 1),
  (73, 1),
  (562, 1),
  (499, 1),
  (756, 1),
  (759, 1),
  (316, 1)],
 [(34, 1),
  (3, 1),
  (613, 1),
  (4235, 1),
  (2, 1),
  (1615, 1),
  (3250, 1),
  (4244, 1),
  (759, 1),
  (1497, 1)],
 [(1, 1),
  (3714, 1),
  (993, 1),
  (4, 1),
  (150, 1),
  (1158, 1),
  (519, 1),
  (2440, 1),
  (1367, 1),
  (653, 1),
  (15, 1),
  (146, 1),
  (2707, 1),
  (4245, 1),
  (4246, 1),
  (4247, 1),
  (4248, 1),
  (4249, 1),
  (4250, 1),
  (4251, 1),
  (4252, 1),
  (4253, 1),
  (4254, 1),
  (4255, 1),
  (4256, 1),
  (4257, 1),
  (4258, 1),
  (4259, 1),
  (36, 1),
  (37, 1),
  (3151, 1),
  (1607, 1),
  (173, 1),
  (558, 1),
  (303, 1),
  (48, 1),
  (1182, 1),
  (54, 1),
  (567, 1),
  (56, 1),
  (3897, 1),
  (2079, 1),
  (60, 1),
  (3390, 1),
  (3393, 1),
  (2, 1),
  (1123, 1),
  (708, 1),
  (3186, 1),
  (2631, 1),
  (1354, 1),
  (2636, 1),
  (1058, 1),
  (590, 1),
  (13, 1),
  (848, 1),
  (440, 1),
  (2899, 1),
  (340, 1),
  (599, 1),
  (4260, 1),
  (90, 1),
  (1039, 1),
  (222, 1),
  (4261, 1),
  (3152, 1),
  (995, 1),
  (976, 1),
  (107, 1),
  (110, 1),
  (4207, 1),
  (1394, 1),
  (4085, 1),
  (759, 1),
  (754, 1),
  (1530, 1),
  (2431, 1),
  (1858, 1),
  (1662, 1),
  (661, 1)],
 [(1152, 1),
  (3456, 1),
  (13, 1),
  (15, 1),
  (789, 1),
  (4271, 1),
  (2079, 1),
  (34, 1),
  (4262, 1),
  (4263, 1),
  (4264, 1),
  (4265, 1),
  (4266, 1),
  (4267, 1),
  (4268, 1),
  (4269, 1),
  (4270, 1),
  (303, 1),
  (4272, 1),
  (4273, 1),
  (4274, 1),
  (54, 1),
  (440, 1),
  (1603, 1),
  (589, 1),
  (1869, 1),
  (337, 1),
  (996, 1),
  (613, 1),
  (1643, 1),
  (759, 1),
  (123, 1)],
 [(2, 1),
  (4235, 1),
  (4244, 1),
  (24, 1),
  (811, 1),
  (687, 1),
  (48, 1),
  (4275, 1),
  (4276, 1),
  (4277, 1),
  (4278, 1),
  (4279, 1),
  (4280, 1),
  (4281, 1),
  (1345, 1),
  (1858, 1),
  (73, 1),
  (4215, 1),
  (1740, 1),
  (476, 1),
  (2398, 1),
  (486, 1),
  (2406, 1),
  (759, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (4292, 1),
  (134, 1),
  (4289, 1),
  (4234, 1),
  (2828, 1),
  (4290, 1),
  (4291, 1),
  (1684, 1),
  (150, 1),
  (25, 1),
  (4126, 1),
  (1823, 1),
  (3010, 1),
  (1825, 1),
  (3621, 1),
  (169, 1),
  (428, 1),
  (114, 1),
  (432, 1),
  (562, 1),
  (949, 1),
  (3897, 1),
  (4282, 1),
  (4283, 1),
  (4284, 1),
  (4285, 1),
  (4286, 1),
  (4287, 1),
  (4288, 1),
  (321, 1),
  (1858, 1),
  (1483, 1),
  (708, 1),
  (4293, 1),
  (4294, 1),
  (759, 1),
  (3276, 1),
  (718, 1),
  (3151, 1),
  (977, 1),
  (213, 1),
  (1367, 1),
  (1158, 1),
  (1509, 1),
  (996, 1),
  (613, 1),
  (486, 1),
  (103, 1),
  (616, 1),
  (1852, 1),
  (1898, 1),
  (4207, 1),
  (368, 1),
  (4209, 1),
  (3186, 1),
  (2291, 1),
  (4215, 1),
  (2182, 1),
  (2042, 1),
  (382, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (134, 1),
  (1033, 1),
  (280, 1),
  (2590, 1),
  (169, 1),
  (48, 1),
  (1713, 1),
  (562, 1),
  (307, 1),
  (182, 1),
  (55, 1),
  (440, 1),
  (317, 1),
  (447, 1),
  (197, 1),
  (4295, 1),
  (4296, 1),
  (2231, 1),
  (3151, 1),
  (1497, 1),
  (476, 1),
  (738, 1),
  (995, 1),
  (110, 1),
  (4207, 1),
  (752, 1),
  (114, 1),
  (759, 1),
  (1278, 1)],
 [(2818, 1),
  (4, 1),
  (150, 1),
  (262, 1),
  (1803, 1),
  (12, 1),
  (13, 1),
  (14, 1),
  (530, 1),
  (73, 1),
  (23, 1),
  (1560, 1),
  (802, 1),
  (1193, 1),
  (48, 1),
  (562, 1),
  (54, 1),
  (55, 1),
  (185, 1),
  (4297, 1),
  (183, 1),
  (162, 1),
  (719, 1),
  (3920, 1),
  (2897, 1),
  (84, 1),
  (725, 1),
  (470, 1),
  (2008, 1),
  (473, 1),
  (742, 1),
  (362, 1),
  (1267, 1),
  (764, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (35, 1),
  (996, 1),
  (999, 1),
  (616, 1),
  (4298, 1),
  (759, 1),
  (13, 1),
  (50, 1),
  (1147, 1),
  (182, 1),
  (55, 1),
  (123, 1),
  (316, 1),
  (2079, 1)],
 [(1, 1),
  (2, 1),
  (773, 1),
  (2572, 1),
  (4238, 1),
  (23, 1),
  (280, 1),
  (795, 1),
  (928, 1),
  (557, 1),
  (48, 1),
  (562, 1),
  (185, 1),
  (1339, 1),
  (316, 1),
  (4287, 1),
  (4299, 1),
  (4300, 1),
  (4301, 1),
  (4302, 1),
  (333, 1),
  (4304, 1),
  (4305, 1),
  (4303, 1),
  (4222, 1),
  (759, 1),
  (382, 1)],
 [(887, 1),
  (34, 1),
  (2291, 1),
  (327, 1),
  (1033, 1),
  (4235, 1),
  (562, 1),
  (752, 1),
  (4306, 1),
  (4307, 1),
  (759, 1),
  (792, 1),
  (4217, 1),
  (1370, 1),
  (987, 1)],
 [(1, 1),
  (2, 1),
  (1797, 1),
  (13, 1),
  (2204, 1),
  (42, 1),
  (562, 1),
  (1737, 1),
  (1594, 1),
  (458, 1),
  (327, 1),
  (73, 1),
  (74, 1),
  (4308, 1),
  (4309, 1),
  (4310, 1),
  (996, 1),
  (1254, 1),
  (616, 1),
  (1769, 1),
  (4209, 1),
  (244, 1),
  (759, 1),
  (4217, 1),
  (4222, 1)],
 [(562, 1), (2079, 1), (4215, 1), (447, 1)],
 [(129, 1),
  (4, 1),
  (13, 1),
  (14, 1),
  (1572, 1),
  (48, 1),
  (3250, 1),
  (691, 1),
  (2502, 1),
  (1098, 1),
  (397, 1),
  (4311, 1),
  (4312, 1),
  (4313, 1),
  (3551, 1),
  (362, 1),
  (2429, 1),
  (3957, 1),
  (1656, 1),
  (2938, 1),
  (123, 1),
  (1021, 1)],
 [(1154, 1),
  (4, 1),
  (3718, 1),
  (267, 1),
  (1165, 1),
  (14, 1),
  (143, 1),
  (2064, 1),
  (24, 1),
  (26, 1),
  (3887, 1),
  (28, 1),
  (4314, 1),
  (670, 1),
  (603, 1),
  (1572, 1),
  (550, 1),
  (4316, 1),
  (1962, 1),
  (1199, 1),
  (176, 1),
  (2612, 1),
  (30, 1),
  (182, 1),
  (60, 1),
  (1470, 1),
  (117, 1),
  (3780, 1),
  (2502, 1),
  (759, 1),
  (4322, 1),
  (207, 1),
  (463, 1),
  (3156, 1),
  (2901, 1),
  (4311, 1),
  (4324, 1),
  (602, 1),
  (4315, 1),
  (1500, 1),
  (4317, 1),
  (4318, 1),
  (4319, 1),
  (4320, 1),
  (4321, 1),
  (668, 1),
  (4323, 1),
  (3044, 1),
  (38, 1),
  (1127, 1),
  (616, 1),
  (1132, 1),
  (2165, 1),
  (1399, 1),
  (2772, 1)],
 [(1, 1),
  (3206, 1),
  (140, 1),
  (1165, 1),
  (14, 1),
  (146, 1),
  (147, 1),
  (788, 1),
  (25, 1),
  (1563, 1),
  (670, 1),
  (4012, 1),
  (557, 1),
  (558, 1),
  (1199, 1),
  (50, 1),
  (182, 1),
  (183, 1),
  (447, 1),
  (73, 1),
  (1483, 1),
  (3662, 1),
  (141, 1),
  (1362, 1),
  (4180, 1),
  (4053, 1),
  (602, 1),
  (348, 1),
  (4325, 1),
  (4326, 1),
  (4327, 1),
  (1128, 1),
  (2793, 1),
  (1900, 1),
  (2032, 1),
  (4328, 1),
  (244, 1),
  (1015, 1),
  (123, 1)],
 [(1, 1),
  (2, 1),
  (3, 1),
  (1381, 1),
  (4329, 1),
  (4012, 1),
  (1560, 1),
  (1305, 1)],
 [(128, 1),
  (1, 1),
  (3330, 1),
  (4, 1),
  (1926, 1),
  (263, 1),
  (30, 1),
  (1495, 1),
  (1165, 1),
  (14, 1),
  (4333, 1),
  (2066, 1),
  (1560, 1),
  (670, 1),
  (2978, 1),
  (675, 1),
  (1572, 1),
  (1642, 1),
  (1318, 1),
  (169, 1),
  (1578, 1),
  (173, 1),
  (1198, 1),
  (2991, 1),
  (1586, 1),
  (2803, 1),
  (180, 1),
  (3614, 1),
  (182, 1),
  (3636, 1),
  (314, 1),
  (60, 1),
  (61, 1),
  (146, 1),
  (2757, 1),
  (2502, 1),
  (71, 1),
  (459, 1),
  (13, 1),
  (1490, 1),
  (722, 1),
  (599, 1),
  (603, 1),
  (3163, 1),
  (100, 1),
  (38, 1),
  (4330, 1),
  (4331, 1),
  (4332, 1),
  (1938, 1),
  (4334, 1),
  (4335, 1),
  (4336, 1),
  (4337, 1),
  (4338, 1),
  (4339, 1),
  (117, 1),
  (2985, 1),
  (2555, 1),
  (298, 1),
  (1206, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (38, 1),
  (1106, 1),
  (4340, 1),
  (480, 1),
  (573, 1),
  (447, 1)],
 [(1, 1),
  (4341, 1),
  (4, 1),
  (147, 1),
  (557, 1),
  (529, 1),
  (115, 1),
  (126, 1),
  (23, 1),
  (30, 1),
  (1011, 1)],
 [(3692, 1),
  (1282, 1),
  (771, 1),
  (4342, 1),
  (678, 1),
  (2364, 1),
  (42, 1),
  (4343, 1),
  (1752, 1),
  (48, 1),
  (24, 1),
  (150, 1),
  (151, 1),
  (120, 1),
  (60, 1),
  (4344, 1),
  (3262, 1)],
 [(1, 1),
  (2, 1),
  (2878, 1),
  (4, 1),
  (326, 1),
  (3334, 1),
  (2258, 1),
  (1131, 1),
  (34, 1),
  (239, 1),
  (2417, 1),
  (1490, 1),
  (30, 1),
  (4185, 1),
  (4345, 1),
  (4346, 1),
  (670, 1)],
 [(128, 1),
  (4, 1),
  (3334, 1),
  (2317, 1),
  (2064, 1),
  (1560, 1),
  (1565, 1),
  (30, 1),
  (173, 1),
  (1327, 1),
  (1165, 1),
  (670, 1),
  (183, 1),
  (709, 1),
  (73, 1),
  (75, 1),
  (1997, 1),
  (13, 1),
  (4180, 1),
  (602, 1),
  (603, 1),
  (1131, 1),
  (2540, 1),
  (125, 1),
  (4347, 1),
  (4348, 1),
  (4349, 1),
  (4350, 1)],
 [(4352, 1),
  (128, 1),
  (3334, 1),
  (520, 1),
  (1165, 1),
  (16, 1),
  (529, 1),
  (2066, 1),
  (2581, 1),
  (1560, 1),
  (25, 1),
  (670, 1),
  (1578, 1),
  (182, 1),
  (183, 1),
  (60, 1),
  (62, 1),
  (117, 1),
  (1863, 1),
  (1483, 1),
  (848, 1),
  (869, 1),
  (4330, 1),
  (1653, 1),
  (1962, 1),
  (4351, 1)],
 [(4353, 1),
  (4354, 1),
  (4355, 1),
  (4, 1),
  (4357, 1),
  (1165, 1),
  (15, 1),
  (18, 1),
  (4115, 1),
  (4356, 1),
  (283, 1),
  (670, 1),
  (1312, 1),
  (35, 1),
  (1572, 1),
  (937, 1),
  (173, 1),
  (60, 1),
  (2878, 1),
  (288, 1),
  (2, 1),
  (199, 1),
  (77, 1),
  (463, 1),
  (4180, 1),
  (214, 1),
  (1367, 1),
  (603, 1),
  (353, 1),
  (1254, 1),
  (998, 1),
  (147, 1),
  (121, 1),
  (4351, 1)],
 [(1, 1),
  (1154, 1),
  (2819, 1),
  (4, 1),
  (4358, 1),
  (4359, 1),
  (4360, 1),
  (4361, 1),
  (4362, 1),
  (4363, 1),
  (13, 1),
  (3330, 1),
  (4366, 1),
  (4367, 1),
  (4368, 1),
  (24, 1),
  (2962, 1),
  (4371, 1),
  (4365, 1),
  (21, 1),
  (4374, 1),
  (23, 1),
  (2200, 1),
  (1305, 1),
  (1693, 1),
  (670, 1),
  (1951, 1),
  (1560, 1),
  (2978, 1),
  (3748, 1),
  (937, 1),
  (4370, 1),
  (171, 1),
  (557, 1),
  (1072, 1),
  (264, 1),
  (946, 1),
  (691, 1),
  (180, 1),
  (54, 1),
  (184, 1),
  (60, 1),
  (3957, 1),
  (2757, 1),
  (4364, 1),
  (1477, 1),
  (1165, 1),
  (1489, 1),
  (1875, 1),
  (14, 1),
  (214, 1),
  (1495, 1),
  (602, 1),
  (483, 1),
  (228, 1),
  (2789, 1),
  (4369, 1),
  (1131, 1),
  (2066, 1),
  (255, 1),
  (50, 1),
  (1009, 1),
  (114, 1),
  (1011, 1),
  (117, 1),
  (246, 1),
  (1144, 1),
  (4372, 1),
  (3707, 1),
  (298, 1),
  (4373, 1),
  (1599, 1)],
 [(2064, 1),
  (4, 1),
  (2440, 1),
  (73, 1),
  (1582, 1),
  (16, 1),
  (1108, 1),
  (117, 1),
  (4375, 1),
  (121, 1),
  (62, 1),
  (799, 1)],
 [(1, 1),
  (1736, 1),
  (4043, 1),
  (562, 1),
  (14, 1),
  (463, 1),
  (1393, 1),
  (50, 1),
  (150, 1),
  (4376, 1),
  (2111, 1),
  (127, 1)],
 [(1, 1),
  (4, 1),
  (517, 1),
  (11, 1),
  (13, 1),
  (2062, 1),
  (2066, 1),
  (259, 1),
  (20, 1),
  (23, 1),
  (1560, 1),
  (25, 1),
  (30, 1),
  (34, 1),
  (1571, 1),
  (1572, 1),
  (43, 1),
  (50, 1),
  (2615, 1),
  (60, 1),
  (61, 1),
  (574, 1),
  (2111, 1),
  (73, 1),
  (4171, 1),
  (77, 1),
  (3673, 1),
  (602, 1),
  (1123, 1),
  (618, 1),
  (1131, 1),
  (2160, 1),
  (1653, 1),
  (631, 1),
  (120, 1),
  (3263, 1),
  (4403, 1),
  (1165, 1),
  (670, 1),
  (3696, 1),
  (1199, 1),
  (691, 1),
  (180, 1),
  (183, 1),
  (187, 1),
  (117, 1),
  (708, 1),
  (4297, 1),
  (725, 1),
  (214, 1),
  (293, 1),
  (2342, 1),
  (1255, 1),
  (2793, 1),
  (4336, 1),
  (2806, 1),
  (4351, 1),
  (3330, 1),
  (4390, 1),
  (3851, 1),
  (1813, 1),
  (4377, 1),
  (4378, 1),
  (4379, 1),
  (4380, 1),
  (4381, 1),
  (4382, 1),
  (4383, 1),
  (4384, 1),
  (4385, 1),
  (4386, 1),
  (4387, 1),
  (4388, 1),
  (4389, 1),
  (1318, 1),
  (4391, 1),
  (4392, 1),
  (4393, 1),
  (4394, 1),
  (4395, 1),
  (4396, 1),
  (4397, 1),
  (4398, 1),
  (4399, 1),
  (4400, 1),
  (4401, 1),
  (4402, 1),
  (307, 1),
  (4404, 1),
  (4405, 1),
  (4406, 1),
  (4407, 1),
  (4408, 1),
  (321, 1),
  (1863, 1),
  (1870, 1),
  (851, 1),
  (341, 1),
  (342, 1),
  (348, 1),
  (1381, 1),
  (365, 1),
  (1396, 1),
  (383, 1),
  (2949, 1),
  (2954, 1),
  (1421, 1),
  (914, 1),
  (2453, 1),
  (2454, 1),
  (2985, 1),
  (1962, 1),
  (1451, 1),
  (2477, 1),
  (437, 1),
  (2507, 1),
  (463, 1),
  (976, 1),
  (3551, 1),
  (484, 1),
  (486, 1),
  (492, 1),
  (3565, 1),
  (2032, 1),
  (510, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (2179, 1),
  (4, 1),
  (5, 1),
  (262, 1),
  (13, 1),
  (15, 1),
  (2067, 1),
  (150, 1),
  (23, 1),
  (153, 1),
  (30, 1),
  (1320, 1),
  (170, 1),
  (50, 1),
  (883, 1),
  (3508, 1),
  (55, 1),
  (4409, 1),
  (4410, 1),
  (4411, 1),
  (573, 1),
  (62, 1),
  (4085, 1),
  (2625, 1),
  (73, 1),
  (2638, 1),
  (484, 1),
  (106, 1),
  (1267, 1),
  (628, 1),
  (117, 1),
  (631, 1),
  (764, 1),
  (2301, 1)],
 [(1, 1),
  (2, 1),
  (1572, 1),
  (2757, 1),
  (73, 1),
  (10, 1),
  (13, 1),
  (1165, 1),
  (147, 1),
  (149, 1),
  (397, 1),
  (121, 1)],
 [(1, 1),
  (264, 1),
  (10, 1),
  (1938, 1),
  (1173, 1),
  (23, 1),
  (33, 1),
  (1704, 1),
  (557, 1),
  (176, 1),
  (691, 1),
  (183, 1),
  (4412, 1),
  (4413, 1),
  (2502, 1),
  (78, 1),
  (207, 1),
  (4180, 1),
  (463, 1),
  (103, 1),
  (60, 1),
  (2809, 1)],
 [(160, 1),
  (1, 1),
  (263, 1),
  (173, 1),
  (877, 1),
  (720, 1),
  (529, 1),
  (147, 1),
  (4414, 1),
  (1495, 1),
  (60, 1),
  (30, 1),
  (4415, 1)],
 [(4416, 1),
  (3585, 1),
  (4395, 1),
  (520, 1),
  (1, 1),
  (616, 1),
  (4417, 1),
  (398, 1),
  (529, 1),
  (114, 1),
  (691, 1),
  (180, 1),
  (1495, 1),
  (1560, 1),
  (30, 1),
  (1011, 1)],
 [(33, 1),
  (34, 1),
  (14, 1),
  (147, 1),
  (117, 1),
  (1654, 1),
  (439, 1),
  (1560, 1),
  (123, 1),
  (61, 1),
  (309, 1)],
 [(4, 1),
  (140, 1),
  (153, 1),
  (2079, 1),
  (176, 1),
  (3250, 1),
  (180, 1),
  (822, 1),
  (184, 1),
  (60, 1),
  (321, 1),
  (4418, 1),
  (4419, 1),
  (4420, 1),
  (4421, 1),
  (4422, 1),
  (4423, 1),
  (4424, 1),
  (330, 1),
  (459, 1),
  (1999, 1),
  (1757, 1),
  (1633, 1),
  (106, 1),
  (1011, 1),
  (117, 1),
  (246, 1),
  (120, 1),
  (121, 1)],
 [(1, 1),
  (1318, 1),
  (4, 1),
  (2757, 1),
  (3206, 1),
  (3527, 1),
  (4425, 1),
  (1578, 1),
  (2066, 1),
  (4180, 1),
  (2069, 1),
  (180, 1),
  (603, 1),
  (36, 1),
  (149, 1)],
 [(128, 1),
  (1, 1),
  (2313, 1),
  (1165, 1),
  (2066, 1),
  (147, 1),
  (25, 1),
  (2462, 1),
  (1572, 1),
  (169, 1),
  (1578, 1),
  (2057, 1),
  (198, 1),
  (4426, 1),
  (4427, 1),
  (4428, 1),
  (4429, 1),
  (4430, 1),
  (3924, 1),
  (214, 1),
  (1752, 1),
  (1242, 1),
  (228, 1),
  (2540, 1),
  (1902, 1),
  (1272, 1),
  (2941, 1)],
 [(1, 1),
  (4, 1),
  (103, 1),
  (137, 1),
  (455, 1),
  (13, 1),
  (4431, 1),
  (721, 1),
  (449, 1),
  (787, 1),
  (150, 1),
  (151, 1),
  (440, 1),
  (94, 1)],
 [(1, 1),
  (1410, 1),
  (4, 1),
  (134, 1),
  (263, 1),
  (522, 1),
  (397, 1),
  (14, 1),
  (2576, 1),
  (1427, 1),
  (976, 1),
  (150, 1),
  (299, 1),
  (300, 1),
  (3501, 1),
  (184, 1),
  (1472, 1),
  (4419, 1),
  (1348, 1),
  (457, 1),
  (4432, 1),
  (4433, 1),
  (4434, 1),
  (349, 1),
  (16, 1),
  (116, 1),
  (117, 1),
  (1015, 1),
  (2552, 1),
  (126, 1)],
 [(1, 1),
  (4, 1),
  (10, 1),
  (12, 1),
  (13, 1),
  (23, 1),
  (2203, 1),
  (288, 1),
  (36, 1),
  (2855, 1),
  (1320, 1),
  (4398, 1),
  (48, 1),
  (50, 1),
  (837, 1),
  (73, 1),
  (4435, 1),
  (480, 1),
  (4194, 1),
  (239, 1),
  (372, 1),
  (631, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (773, 1),
  (774, 1),
  (2313, 1),
  (13, 1),
  (14, 1),
  (16, 1),
  (344, 1),
  (149, 1),
  (3357, 1),
  (30, 1),
  (1797, 1),
  (2978, 1),
  (557, 1),
  (1327, 1),
  (50, 1),
  (949, 1),
  (61, 1),
  (4163, 1),
  (198, 1),
  (199, 1),
  (968, 1),
  (73, 1),
  (3018, 1),
  (290, 1),
  (1105, 1),
  (1362, 1),
  (4436, 1),
  (4437, 1),
  (4438, 1),
  (4439, 1),
  (4440, 1),
  (4441, 1),
  (4442, 1),
  (4443, 1),
  (739, 1),
  (101, 1),
  (1254, 1),
  (81, 1),
  (1131, 1),
  (2032, 1),
  (1009, 1),
  (383, 1)],
 [(2144, 1),
  (4, 1),
  (72, 1),
  (73, 1),
  (365, 1),
  (446, 1),
  (4444, 1),
  (573, 1),
  (830, 1)],
 [(4, 1),
  (808, 1),
  (362, 1),
  (173, 1),
  (14, 1),
  (4445, 1),
  (2865, 1),
  (50, 1),
  (117, 1),
  (23, 1),
  (762, 1),
  (125, 1),
  (126, 1)],
 [(1, 1),
  (13, 1),
  (526, 1),
  (2453, 1),
  (3485, 1),
  (30, 1),
  (3619, 1),
  (169, 1),
  (949, 1),
  (822, 1),
  (1975, 1),
  (60, 1),
  (62, 1),
  (3143, 1),
  (439, 1),
  (1747, 1),
  (342, 1),
  (88, 1),
  (601, 1),
  (602, 1),
  (4446, 1),
  (4447, 1),
  (4448, 1),
  (4449, 1),
  (4450, 1),
  (4451, 1),
  (4452, 1),
  (1902, 1),
  (1789, 1)],
 [(230, 1),
  (933, 1),
  (4454, 1),
  (1, 1),
  (73, 1),
  (13, 1),
  (465, 1),
  (2098, 1),
  (1278, 1),
  (981, 1),
  (1083, 1),
  (30, 1),
  (4453, 1)],
 [(1, 1), (2891, 1), (116, 1), (830, 1)],
 [(16, 1),
  (283, 1),
  (4, 1),
  (263, 1),
  (552, 1),
  (73, 1),
  (14, 1),
  (2575, 1),
  (48, 1),
  (739, 1),
  (1, 1),
  (121, 1),
  (3739, 1)],
 [(1, 1),
  (2, 1),
  (4455, 1),
  (4456, 1),
  (4457, 1),
  (263, 1),
  (77, 1),
  (16, 1),
  (552, 1),
  (626, 1),
  (1846, 1)],
 [(1, 1),
  (771, 1),
  (4, 1),
  (5, 1),
  (518, 1),
  (10, 1),
  (13, 1),
  (14, 1),
  (15, 1),
  (16, 1),
  (146, 1),
  (1174, 1),
  (2969, 1),
  (29, 1),
  (150, 1),
  (552, 1),
  (169, 1),
  (1199, 1),
  (48, 1),
  (2102, 1),
  (1338, 1),
  (571, 1),
  (2364, 1),
  (63, 1),
  (1728, 1),
  (4163, 1),
  (182, 1),
  (582, 1),
  (4431, 1),
  (209, 1),
  (3282, 1),
  (602, 1),
  (207, 1),
  (2917, 1),
  (230, 1),
  (487, 1),
  (4458, 1),
  (4459, 1),
  (4460, 1),
  (4461, 1),
  (4462, 1),
  (4463, 1),
  (497, 1),
  (2552, 1),
  (1017, 1),
  (3706, 1),
  (2301, 1),
  (127, 1)],
 [(2, 1),
  (2307, 1),
  (4, 1),
  (5, 1),
  (2954, 1),
  (13, 1),
  (14, 1),
  (15, 1),
  (16, 1),
  (530, 1),
  (2196, 1),
  (23, 1),
  (708, 1),
  (30, 1),
  (33, 1),
  (2978, 1),
  (550, 1),
  (2350, 1),
  (48, 1),
  (1083, 1),
  (60, 1),
  (62, 1),
  (1092, 1),
  (205, 1),
  (2552, 1),
  (1362, 1),
  (212, 1),
  (2008, 1),
  (602, 1),
  (1374, 1),
  (230, 1),
  (1895, 1),
  (106, 1),
  (1643, 1),
  (4464, 1),
  (4465, 1),
  (120, 1),
  (121, 1)],
 [(480, 1),
  (1, 1),
  (330, 1),
  (4, 1),
  (1797, 1),
  (16, 1),
  (10, 1),
  (1005, 1),
  (3311, 1),
  (944, 1),
  (1905, 1),
  (50, 1),
  (628, 1),
  (25, 1),
  (121, 1),
  (362, 1),
  (764, 1),
  (74, 1),
  (446, 1),
  (4101, 1)],
 [(48, 1),
  (2, 1),
  (602, 1),
  (486, 1),
  (690, 1),
  (176, 1),
  (26, 1),
  (55, 1),
  (762, 1),
  (1564, 1),
  (125, 1)],
 [(1760, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (1193, 1),
  (2594, 1),
  (4466, 1),
  (2703, 1),
  (48, 1),
  (50, 1),
  (1011, 1),
  (4468, 1),
  (4469, 1),
  (182, 1),
  (472, 1),
  (890, 1),
  (770, 1),
  (4467, 1),
  (61, 1)],
 [(128, 1),
  (2, 1),
  (4, 1),
  (226, 1),
  (652, 1),
  (13, 1),
  (14, 1),
  (16, 1),
  (153, 1),
  (103, 1),
  (1564, 1),
  (849, 1),
  (1092, 1),
  (35, 1),
  (34, 1),
  (2851, 1),
  (1190, 1),
  (299, 1),
  (557, 1),
  (48, 1),
  (182, 1),
  (1097, 1),
  (3002, 1),
  (317, 1),
  (62, 1),
  (4086, 1),
  (2175, 1),
  (708, 1),
  (246, 1),
  (73, 1),
  (1634, 1),
  (207, 1),
  (2189, 1),
  (2552, 1),
  (1106, 1),
  (1571, 1),
  (121, 1),
  (1497, 1),
  (602, 1),
  (4474, 1),
  (2530, 1),
  (483, 1),
  (1381, 1),
  (486, 1),
  (209, 1),
  (872, 1),
  (1131, 1),
  (4475, 1),
  (110, 1),
  (2287, 1),
  (1009, 1),
  (446, 1),
  (4470, 1),
  (4471, 1),
  (4472, 1),
  (4473, 1),
  (1530, 1),
  (123, 1),
  (4476, 1),
  (4477, 1),
  (2431, 1)],
 [(1, 1),
  (2563, 1),
  (4, 1),
  (582, 1),
  (71, 1),
  (169, 1),
  (4330, 1),
  (13, 1),
  (3501, 1),
  (14, 1),
  (2703, 1),
  (16, 1),
  (4478, 1),
  (601, 1),
  (29, 1),
  (394, 1)],
 [(4480, 1),
  (1, 1),
  (4482, 1),
  (4483, 1),
  (4, 1),
  (4485, 1),
  (518, 1),
  (4481, 1),
  (4488, 1),
  (4489, 1),
  (4484, 1),
  (13, 1),
  (24, 1),
  (2969, 1),
  (540, 1),
  (29, 1),
  (848, 1),
  (33, 1),
  (34, 1),
  (4486, 1),
  (38, 1),
  (169, 1),
  (4487, 1),
  (2224, 1),
  (178, 1),
  (128, 1),
  (948, 1),
  (565, 1),
  (182, 1),
  (1724, 1),
  (1973, 1),
  (708, 1),
  (197, 1),
  (3142, 1),
  (1867, 1),
  (2512, 1),
  (602, 1),
  (93, 1),
  (720, 1),
  (3238, 1),
  (230, 1),
  (872, 1),
  (492, 1),
  (3565, 1),
  (1009, 1),
  (626, 1),
  (2165, 1),
  (2552, 1),
  (1017, 1),
  (831, 1),
  (4479, 1)],
 [(1, 1),
  (522, 1),
  (16, 1),
  (687, 1),
  (3485, 1),
  (30, 1),
  (1312, 1),
  (4130, 1),
  (1572, 1),
  (1578, 1),
  (557, 1),
  (558, 1),
  (93, 1),
  (48, 1),
  (50, 1),
  (180, 1),
  (10, 1),
  (62, 1),
  (715, 1),
  (977, 1),
  (470, 1),
  (985, 1),
  (349, 1),
  (114, 1),
  (121, 1)],
 [(1264, 1),
  (4, 1),
  (1254, 1),
  (296, 1),
  (2313, 1),
  (4490, 1),
  (176, 1),
  (626, 1),
  (20, 1),
  (21, 1),
  (169, 1)],
 [(1, 1),
  (2, 1),
  (3075, 1),
  (4, 1),
  (523, 1),
  (13, 1),
  (16, 1),
  (20, 1),
  (533, 1),
  (540, 1),
  (30, 1),
  (552, 1),
  (48, 1),
  (50, 1),
  (54, 1),
  (2616, 1),
  (62, 1),
  (949, 1),
  (578, 1),
  (1092, 1),
  (3150, 1),
  (2317, 1),
  (602, 1),
  (603, 1),
  (92, 1),
  (608, 1),
  (101, 1),
  (1127, 1),
  (618, 1),
  (2165, 1),
  (121, 1),
  (128, 1),
  (130, 1),
  (134, 1),
  (661, 1),
  (153, 1),
  (672, 1),
  (173, 1),
  (178, 1),
  (180, 1),
  (182, 1),
  (198, 1),
  (2761, 1),
  (2766, 1),
  (209, 1),
  (214, 1),
  (1760, 1),
  (1266, 1),
  (243, 1),
  (3329, 1),
  (262, 1),
  (269, 1),
  (272, 1),
  (3859, 1),
  (280, 1),
  (283, 1),
  (298, 1),
  (3979, 1),
  (1865, 1),
  (330, 1),
  (1358, 1),
  (340, 1),
  (4437, 1),
  (349, 1),
  (998, 1),
  (872, 1),
  (1902, 1),
  (4465, 1),
  (2931, 1),
  (149, 1),
  (903, 1),
  (4491, 1),
  (4492, 1),
  (4493, 1),
  (4494, 1),
  (4495, 1),
  (4496, 1),
  (4497, 1),
  (4498, 1),
  (4499, 1),
  (4500, 1),
  (4501, 1),
  (4502, 1),
  (4503, 1),
  (2969, 1),
  (1446, 1),
  (3495, 1),
  (936, 1),
  (1267, 1),
  (1973, 1),
  (3002, 1),
  (443, 1),
  (445, 1),
  (446, 1),
  (961, 1),
  (4044, 1),
  (977, 1),
  (486, 1),
  (2024, 1),
  (497, 1),
  (1015, 1),
  (2552, 1),
  (1530, 1),
  (341, 1)],
 [(4, 1),
  (1797, 1),
  (13, 1),
  (14, 1),
  (529, 1),
  (4502, 1),
  (4504, 1),
  (4505, 1),
  (4506, 1),
  (4507, 1),
  (4508, 1),
  (4509, 1),
  (4510, 1),
  (4511, 1),
  (4512, 1),
  (1446, 1),
  (1009, 1),
  (173, 1),
  (48, 1),
  (439, 1),
  (62, 1),
  (1863, 1),
  (585, 1),
  (715, 1),
  (94, 1),
  (1381, 1),
  (4453, 1),
  (4465, 1),
  (2294, 1),
  (123, 1)],
 [(2, 1),
  (4, 1),
  (261, 1),
  (435, 1),
  (280, 1),
  (29, 1),
  (800, 1),
  (4513, 1),
  (4514, 1),
  (4515, 1),
  (4516, 1),
  (4517, 1),
  (1446, 1),
  (3495, 1),
  (42, 1),
  (3143, 1),
  (307, 1),
  (1353, 1),
  (571, 1),
  (573, 1),
  (708, 1),
  (1607, 1),
  (73, 1),
  (2770, 1),
  (1500, 1),
  (677, 1),
  (1122, 1),
  (2155, 1),
  (1391, 1),
  (4465, 1)],
 [(635, 1),
  (4, 1),
  (150, 1),
  (262, 1),
  (388, 1),
  (12, 1),
  (13, 1),
  (14, 1),
  (15, 1),
  (439, 1),
  (2008, 1),
  (1298, 1),
  (789, 1),
  (790, 1),
  (23, 1),
  (24, 1),
  (153, 1),
  (900, 1),
  (283, 1),
  (5, 1),
  (1952, 1),
  (293, 1),
  (4518, 1),
  (2855, 1),
  (1320, 1),
  (4521, 1),
  (42, 1),
  (45, 1),
  (3887, 1),
  (288, 1),
  (1711, 1),
  (180, 1),
  (55, 1),
  (58, 1),
  (74, 1),
  (3774, 1),
  (321, 1),
  (73, 1),
  (330, 1),
  (695, 1),
  (1740, 1),
  (77, 1),
  (591, 1),
  (2258, 1),
  (83, 1),
  (84, 1),
  (213, 1),
  (600, 1),
  (3729, 1),
  (477, 1),
  (480, 1),
  (3553, 1),
  (226, 1),
  (123, 1),
  (101, 1),
  (529, 1),
  (1001, 1),
  (4519, 1),
  (3085, 1),
  (3565, 1),
  (1646, 1),
  (4520, 1),
  (1397, 1),
  (3448, 1),
  (121, 1),
  (2299, 1),
  (764, 1),
  (1535, 1)],
 [(1088, 1),
  (4, 1),
  (1348, 1),
  (73, 1),
  (183, 1),
  (13, 1),
  (173, 1),
  (240, 1),
  (1009, 1),
  (50, 1),
  (937, 1),
  (2552, 1),
  (708, 1),
  (30, 1)],
 [(993, 1),
  (1506, 1),
  (2404, 1),
  (246, 1),
  (550, 1),
  (1348, 1),
  (4522, 1),
  (4523, 1),
  (13, 1),
  (719, 1),
  (48, 1),
  (691, 1),
  (214, 1),
  (185, 1),
  (30, 1),
  (543, 1)],
 [(1, 1),
  (4, 1),
  (263, 1),
  (13, 1),
  (14, 1),
  (557, 1),
  (4526, 1),
  (22, 1),
  (283, 1),
  (30, 1),
  (4528, 1),
  (3688, 1),
  (4524, 1),
  (4525, 1),
  (302, 1),
  (4527, 1),
  (48, 1),
  (4529, 1),
  (562, 1),
  (499, 1),
  (4532, 1),
  (104, 1),
  (3774, 1),
  (708, 1),
  (4531, 1),
  (72, 1),
  (73, 1),
  (173, 1),
  (1362, 1),
  (169, 1),
  (94, 1),
  (1120, 1),
  (1381, 1),
  (872, 1),
  (4530, 1),
  (1648, 1),
  (3057, 1),
  (2803, 1),
  (246, 1),
  (1015, 1),
  (123, 1)],
 [(131, 1),
  (4, 1),
  (263, 1),
  (13, 1),
  (14, 1),
  (149, 1),
  (150, 1),
  (24, 1),
  (183, 1),
  (562, 1),
  (4403, 1),
  (4533, 1),
  (4534, 1),
  (4535, 1),
  (4536, 1),
  (4537, 1),
  (4538, 1),
  (571, 1),
  (4540, 1),
  (4541, 1),
  (4542, 1),
  (4543, 1),
  (4544, 1),
  (435, 1),
  (1348, 1),
  (1206, 1),
  (3255, 1),
  (204, 1),
  (184, 1),
  (725, 1),
  (218, 1),
  (2139, 1),
  (3003, 1),
  (872, 1),
  (1133, 1),
  (754, 1),
  (2803, 1),
  (250, 1),
  (4539, 1),
  (2814, 1)],
 [(4545, 1),
  (4, 1),
  (73, 1),
  (330, 1),
  (13, 1),
  (14, 1),
  (48, 1),
  (50, 1),
  (1267, 1),
  (149, 1),
  (280, 1),
  (708, 1),
  (1973, 1)],
 [(4256, 1),
  (1, 1),
  (4546, 1),
  (4547, 1),
  (2628, 1),
  (234, 1),
  (77, 1),
  (848, 1),
  (884, 1),
  (283, 1),
  (222, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (899, 1),
  (4, 1),
  (1797, 1),
  (1158, 1),
  (1799, 1),
  (209, 1),
  (727, 1),
  (13, 1),
  (14, 1),
  (937, 1),
  (16, 1),
  (2755, 1),
  (2196, 1),
  (870, 1),
  (25, 1),
  (4548, 1),
  (900, 1),
  (1308, 1),
  (30, 1),
  (773, 1),
  (2465, 1),
  (2978, 1),
  (1446, 1),
  (1009, 1),
  (169, 1),
  (299, 1),
  (557, 1),
  (1455, 1),
  (50, 1),
  (1973, 1),
  (54, 1),
  (567, 1),
  (184, 1),
  (571, 1),
  (4029, 1),
  (1598, 1),
  (2165, 1),
  (4554, 1),
  (1760, 1),
  (523, 1),
  (708, 1),
  (4549, 1),
  (4550, 1),
  (4551, 1),
  (4552, 1),
  (4553, 1),
  (330, 1),
  (4555, 1),
  (479, 1),
  (1314, 1),
  (718, 1),
  (207, 1),
  (465, 1),
  (214, 1),
  (1367, 1),
  (472, 1),
  (601, 1),
  (94, 1),
  (182, 1),
  (608, 1),
  (61, 1),
  (612, 1),
  (1509, 1),
  (230, 1),
  (487, 1),
  (551, 1),
  (110, 1),
  (239, 1),
  (4465, 1),
  (562, 1),
  (244, 1),
  (3829, 1),
  (631, 1),
  (2552, 1),
  (2555, 1),
  (2431, 1)],
 [(0, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (519, 1),
  (13, 1),
  (14, 1),
  (16, 1),
  (20, 1),
  (536, 1),
  (28, 1),
  (29, 1),
  (30, 1),
  (4130, 1),
  (35, 1),
  (36, 1),
  (39, 1),
  (557, 1),
  (48, 1),
  (50, 1),
  (571, 1),
  (77, 1),
  (602, 1),
  (94, 1),
  (1633, 1),
  (2149, 1),
  (616, 1),
  (1131, 1),
  (111, 1),
  (1652, 1),
  (631, 1),
  (635, 1),
  (1666, 1),
  (2696, 1),
  (151, 1),
  (708, 1),
  (167, 1),
  (169, 1),
  (698, 1),
  (4292, 1),
  (214, 1),
  (739, 1),
  (1489, 1),
  (3816, 1),
  (240, 1),
  (2803, 1),
  (4344, 1),
  (3840, 1),
  (282, 1),
  (299, 1),
  (830, 1),
  (2891, 1),
  (338, 1),
  (3924, 1),
  (3416, 1),
  (3940, 1),
  (877, 1),
  (1902, 1),
  (3445, 1),
  (2431, 1),
  (2954, 1),
  (4498, 1),
  (949, 1),
  (446, 1),
  (4556, 1),
  (4557, 1),
  (4558, 1),
  (4559, 1),
  (4560, 1),
  (4561, 1),
  (4562, 1),
  (4563, 1),
  (4564, 1),
  (4565, 1),
  (4566, 1),
  (4567, 1),
  (4568, 1),
  (4569, 1),
  (4570, 1),
  (4571, 1),
  (479, 1),
  (1508, 1),
  (486, 1),
  (487, 1),
  (1015, 1),
  (2552, 1),
  (1017, 1)],
 [(1, 1),
  (773, 1),
  (2719, 1),
  (1953, 1),
  (306, 1),
  (1973, 1),
  (182, 1),
  (73, 1),
  (81, 1),
  (1106, 1),
  (343, 1),
  (601, 1),
  (4572, 1),
  (4573, 1),
  (4069, 1),
  (1254, 1),
  (2002, 1),
  (240, 1),
  (497, 1),
  (114, 1),
  (244, 1),
  (119, 1),
  (123, 1)],
 [(1, 1),
  (900, 1),
  (293, 1),
  (1222, 1),
  (263, 1),
  (10, 1),
  (13, 1),
  (1646, 1),
  (207, 1),
  (209, 1),
  (1684, 1),
  (2934, 1),
  (182, 1),
  (345, 1),
  (4, 1),
  (1338, 1),
  (3578, 1),
  (4574, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (1814, 1),
  (262, 1),
  (2497, 1),
  (13, 1),
  (3598, 1),
  (16, 1),
  (529, 1),
  (150, 1),
  (1560, 1),
  (30, 1),
  (293, 1),
  (2855, 1),
  (1452, 1),
  (2991, 1),
  (3127, 1),
  (187, 1),
  (317, 1),
  (1599, 1),
  (480, 1),
  (1348, 1),
  (3920, 1),
  (2641, 1),
  (1106, 1),
  (214, 1),
  (473, 1),
  (101, 1),
  (4575, 1),
  (4576, 1),
  (4577, 1),
  (4578, 1),
  (4579, 1),
  (2021, 1),
  (239, 1),
  (759, 1),
  (764, 1)],
 [(1825, 1),
  (3747, 1),
  (900, 1),
  (4069, 1),
  (552, 1),
  (1065, 1),
  (619, 1),
  (4580, 1),
  (557, 1),
  (3997, 1),
  (4104, 1),
  (2258, 1),
  (1147, 1),
  (4235, 1),
  (119, 1),
  (3508, 1),
  (207, 1),
  (2301, 1),
  (1055, 1)],
 [(1, 1),
  (4, 1),
  (293, 1),
  (73, 1),
  (10, 1),
  (1452, 1),
  (1646, 1),
  (239, 1),
  (752, 1),
  (529, 1),
  (214, 1),
  (292, 1),
  (447, 1),
  (182, 1)],
 [(1281, 1),
  (900, 1),
  (4069, 1),
  (262, 1),
  (71, 1),
  (937, 1),
  (619, 1),
  (1132, 1),
  (1646, 1),
  (239, 1),
  (48, 1),
  (2258, 1),
  (307, 1),
  (84, 1),
  (1, 1),
  (23, 1),
  (538, 1),
  (151, 1),
  (1857, 1)],
 [(1, 1),
  (900, 1),
  (389, 1),
  (395, 1),
  (1298, 1),
  (23, 1),
  (25, 1),
  (239, 1),
  (3997, 1),
  (30, 1),
  (3487, 1),
  (1572, 1),
  (173, 1),
  (1076, 1),
  (440, 1),
  (446, 1),
  (4287, 1),
  (2252, 1),
  (1869, 1),
  (720, 1),
  (2258, 1),
  (983, 1),
  (36, 1),
  (101, 1),
  (483, 1),
  (100, 1),
  (4581, 1),
  (4582, 1),
  (4583, 1),
  (2024, 1),
  (110, 1),
  (4079, 1),
  (62, 1),
  (119, 1),
  (250, 1),
  (127, 1)],
 [(1, 1),
  (2, 1),
  (2280, 1),
  (4585, 1),
  (3916, 1),
  (4584, 1),
  (2578, 1),
  (182, 1),
  (443, 1),
  (2301, 1),
  (4287, 1)],
 [(1, 1),
  (99, 1),
  (4, 1),
  (4069, 1),
  (2407, 1),
  (4586, 1),
  (12, 1),
  (3085, 1),
  (14, 1),
  (1647, 1),
  (944, 1),
  (1106, 1),
  (2014, 1),
  (3961, 1),
  (2898, 1),
  (764, 1),
  (13, 1),
  (126, 1)],
 [(100, 1),
  (773, 1),
  (518, 1),
  (2407, 1),
  (173, 1),
  (239, 1),
  (720, 1),
  (1266, 1),
  (340, 1),
  (764, 1),
  (127, 1)],
 [(1, 1),
  (3330, 1),
  (99, 1),
  (4, 1),
  (1222, 1),
  (616, 1),
  (4587, 1),
  (4588, 1),
  (4589, 1),
  (3716, 1),
  (2579, 1),
  (23, 1),
  (1624, 1),
  (25, 1),
  (123, 1),
  (605, 1),
  (127, 1)],
 [(1, 1),
  (34, 1),
  (900, 1),
  (552, 1),
  (10, 1),
  (3010, 1),
  (4590, 1),
  (4591, 1),
  (48, 1),
  (302, 1),
  (404, 1),
  (149, 1),
  (248, 1),
  (2730, 1),
  (222, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (900, 1),
  (2566, 1),
  (3719, 1),
  (523, 1),
  (1538, 1),
  (403, 1),
  (151, 1),
  (795, 1),
  (858, 1),
  (30, 1),
  (1648, 1),
  (602, 1),
  (293, 1),
  (1704, 1),
  (48, 1),
  (306, 1),
  (670, 1),
  (182, 1),
  (397, 1),
  (791, 1),
  (872, 1),
  (1106, 1),
  (341, 1),
  (3162, 1),
  (222, 1),
  (100, 1),
  (616, 1),
  (4592, 1),
  (4593, 1),
  (4594, 1),
  (2480, 1),
  (121, 1),
  (3578, 1),
  (123, 1)],
 [(1, 1), (2, 1), (1338, 1), (182, 1), (791, 1)],
 [(1, 1),
  (4, 1),
  (2565, 1),
  (262, 1),
  (1032, 1),
  (4403, 1),
  (13, 1),
  (1422, 1),
  (16, 1),
  (150, 1),
  (153, 1),
  (796, 1),
  (709, 1),
  (862, 1),
  (1267, 1),
  (1452, 1),
  (176, 1),
  (1073, 1),
  (2354, 1),
  (4595, 1),
  (53, 1),
  (918, 1),
  (1225, 1),
  (1338, 1),
  (699, 1),
  (573, 1),
  (565, 1),
  (321, 1),
  (197, 1),
  (73, 1),
  (205, 1),
  (718, 1),
  (77, 1),
  (4562, 1),
  (1909, 1),
  (2008, 1),
  (605, 1),
  (94, 1),
  (95, 1),
  (3937, 1),
  (1378, 1),
  (4579, 1),
  (100, 1),
  (486, 1),
  (2258, 1),
  (1106, 1),
  (4605, 1),
  (616, 1),
  (2291, 1),
  (4596, 1),
  (4597, 1),
  (4598, 1),
  (4599, 1),
  (4600, 1),
  (4601, 1),
  (4602, 1),
  (4603, 1),
  (4604, 1),
  (2429, 1),
  (126, 1),
  (383, 1)],
 [(1152, 1),
  (1, 1),
  (2, 1),
  (900, 1),
  (2198, 1),
  (262, 1),
  (128, 1),
  (1940, 1),
  (150, 1),
  (30, 1),
  (34, 1),
  (937, 1),
  (172, 1),
  (1967, 1),
  (48, 1),
  (946, 1),
  (4287, 1),
  (321, 1),
  (72, 1),
  (78, 1),
  (2258, 1),
  (1367, 1),
  (1880, 1),
  (219, 1),
  (93, 1),
  (2398, 1),
  (479, 1),
  (240, 1),
  (243, 1),
  (631, 1),
  (1017, 1),
  (2429, 1),
  (4606, 1)],
 [(4, 1),
  (1509, 1),
  (1001, 1),
  (2315, 1),
  (173, 1),
  (24, 1),
  (114, 1),
  (180, 1),
  (127, 1),
  (1017, 1),
  (4607, 1),
  (293, 1)],
 [(4608, 1),
  (1, 1),
  (4610, 1),
  (3717, 1),
  (4609, 1),
  (136, 1),
  (256, 1),
  (22, 1),
  (151, 1),
  (24, 1),
  (2714, 1),
  (293, 1),
  (299, 1),
  (173, 1),
  (1327, 1),
  (48, 1),
  (180, 1),
  (75, 1),
  (73, 1),
  (715, 1),
  (1497, 1),
  (1638, 1),
  (239, 1),
  (119, 1),
  (123, 1)],
 [(1, 1),
  (3266, 1),
  (99, 1),
  (4, 1),
  (293, 1),
  (616, 1),
  (169, 1),
  (4613, 1),
  (2, 1),
  (239, 1),
  (176, 1),
  (146, 1),
  (4611, 1),
  (981, 1),
  (23, 1),
  (24, 1),
  (4612, 1),
  (900, 1),
  (899, 1),
  (93, 1),
  (277, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (899, 1),
  (4, 1),
  (293, 1),
  (838, 1),
  (2377, 1),
  (2858, 1),
  (1915, 1),
  (12, 1),
  (690, 1),
  (244, 1),
  (213, 1),
  (2390, 1),
  (472, 1),
  (25, 1),
  (54, 1)],
 [(1, 1),
  (4614, 1),
  (4615, 1),
  (4616, 1),
  (13, 1),
  (1567, 1),
  (169, 1),
  (42, 1),
  (690, 1),
  (302, 1),
  (48, 1),
  (946, 1),
  (182, 1),
  (60, 1),
  (446, 1),
  (1348, 1),
  (214, 1),
  (345, 1),
  (99, 1),
  (4069, 1),
  (616, 1),
  (2027, 1)],
 [(1472, 1),
  (4, 1),
  (550, 1),
  (1736, 1),
  (4617, 1),
  (4618, 1),
  (4619, 1),
  (4620, 1),
  (461, 1),
  (180, 1),
  (94, 1)],
 [(1, 1),
  (99, 1),
  (3882, 1),
  (207, 1),
  (240, 1),
  (499, 1),
  (1494, 1),
  (30, 1)],
 [(128, 1),
  (1, 1),
  (4621, 1),
  (4622, 1),
  (4623, 1),
  (4624, 1),
  (4625, 1),
  (2202, 1),
  (2988, 1),
  (303, 1),
  (567, 1),
  (1375, 1),
  (1340, 1),
  (447, 1),
  (4288, 1),
  (2766, 1),
  (1109, 1),
  (1631, 1),
  (2146, 1),
  (3046, 1),
  (1769, 1),
  (1132, 1),
  (1648, 1),
  (123, 1),
  (382, 1)],
 [(896, 1),
  (1, 1),
  (150, 1),
  (176, 1),
  (13, 1),
  (48, 1),
  (4626, 1),
  (1472, 1),
  (2390, 1),
  (283, 1),
  (30, 1),
  (2149, 1)],
 [(1, 1),
  (2, 1),
  (1286, 1),
  (616, 1),
  (207, 1),
  (50, 1),
  (4627, 1),
  (4628, 1),
  (150, 1),
  (55, 1),
  (24, 1),
  (764, 1),
  (2014, 1)],
 [(0, 1),
  (1, 1),
  (2, 1),
  (4113, 1),
  (645, 1),
  (449, 1),
  (520, 1),
  (16, 1),
  (4632, 1),
  (4629, 1),
  (4630, 1),
  (4631, 1),
  (24, 1),
  (4633, 1),
  (22, 1),
  (283, 1),
  (4634, 1),
  (30, 1),
  (5, 1),
  (1825, 1),
  (4635, 1),
  (2084, 1),
  (37, 1),
  (294, 1),
  (1964, 1),
  (48, 1),
  (136, 1),
  (690, 1),
  (949, 1),
  (2492, 1),
  (62, 1),
  (1345, 1),
  (1219, 1),
  (1220, 1),
  (709, 1),
  (73, 1),
  (2900, 1),
  (599, 1),
  (2904, 1),
  (613, 1),
  (999, 1),
  (2024, 1),
  (1902, 1),
  (239, 1),
  (497, 1),
  (2807, 1),
  (382, 1)],
 [(1, 1),
  (4, 1),
  (261, 1),
  (1802, 1),
  (140, 1),
  (3213, 1),
  (1298, 1),
  (918, 1),
  (901, 1),
  (4636, 1),
  (4637, 1),
  (30, 1),
  (645, 1),
  (4640, 1),
  (37, 1),
  (294, 1),
  (43, 1),
  (1076, 1),
  (4638, 1),
  (567, 1),
  (184, 1),
  (4639, 1),
  (60, 1),
  (1345, 1),
  (1346, 1),
  (1092, 1),
  (198, 1),
  (183, 1),
  (77, 1),
  (1746, 1),
  (1749, 1),
  (342, 1),
  (1757, 1),
  (616, 1),
  (1980, 1),
  (1362, 1),
  (3699, 1),
  (2169, 1),
  (125, 1)],
 [(1, 1), (1354, 1), (4641, 1), (1345, 1)],
 [(128, 1),
  (1345, 1),
  (1314, 1),
  (50, 1),
  (1604, 1),
  (645, 1),
  (4641, 1),
  (1352, 1),
  (1866, 1),
  (2307, 1),
  (562, 1),
  (14, 1),
  (16, 1),
  (3282, 1),
  (4642, 1),
  (106, 1),
  (1174, 1),
  (1659, 1),
  (317, 1)],
 [(128, 1),
  (1345, 1),
  (1987, 1),
  (4, 1),
  (294, 1),
  (4641, 1),
  (193, 1),
  (1324, 1),
  (77, 1),
  (14, 1),
  (13, 1),
  (176, 1),
  (4643, 1),
  (339, 1),
  (725, 1),
  (182, 1),
  (1015, 1),
  (4644, 1),
  (1211, 1),
  (3581, 1),
  (48, 1)],
 [(128, 1),
  (1, 1),
  (134, 1),
  (1938, 1),
  (2067, 1),
  (1174, 1),
  (1687, 1),
  (30, 1),
  (672, 1),
  (4641, 1),
  (293, 1),
  (4646, 1),
  (4647, 1),
  (945, 1),
  (691, 1),
  (1076, 1),
  (183, 1),
  (180, 1),
  (58, 1),
  (60, 1),
  (573, 1),
  (1345, 1),
  (2885, 1),
  (73, 1),
  (338, 1),
  (723, 1),
  (2774, 1),
  (4645, 1),
  (1504, 1),
  (100, 1),
  (1510, 1),
  (2284, 1),
  (3282, 1),
  (3694, 1),
  (245, 1),
  (125, 1)],
 [(1, 1),
  (3, 1),
  (4, 1),
  (394, 1),
  (267, 1),
  (140, 1),
  (13, 1),
  (2958, 1),
  (1552, 1),
  (789, 1),
  (4641, 1),
  (4648, 1),
  (169, 1),
  (4650, 1),
  (173, 1),
  (562, 1),
  (307, 1),
  (182, 1),
  (55, 1),
  (443, 1),
  (60, 1),
  (573, 1),
  (1345, 1),
  (3141, 1),
  (73, 1),
  (1866, 1),
  (3162, 1),
  (988, 1),
  (997, 1),
  (1509, 1),
  (106, 1),
  (877, 1),
  (4649, 1),
  (121, 1)],
 [(388, 1),
  (645, 1),
  (1345, 1),
  (4652, 1),
  (3084, 1),
  (14, 1),
  (2067, 1),
  (4, 1),
  (4641, 1),
  (4651, 1),
  (428, 1),
  (4653, 1),
  (4654, 1),
  (4655, 1),
  (48, 1),
  (1076, 1),
  (180, 1),
  (60, 1),
  (1857, 1),
  (1866, 1),
  (80, 1),
  (465, 1),
  (345, 1),
  (1499, 1),
  (605, 1),
  (2282, 1),
  (3692, 1),
  (1139, 1),
  (245, 1),
  (246, 1),
  (1020, 1)],
 [(1794, 1),
  (2307, 1),
  (567, 1),
  (140, 1),
  (13, 1),
  (1938, 1),
  (2067, 1),
  (25, 1),
  (408, 1),
  (153, 1),
  (4662, 1),
  (925, 1),
  (33, 1),
  (34, 1),
  (1446, 1),
  (2333, 1),
  (48, 1),
  (4657, 1),
  (4658, 1),
  (4659, 1),
  (1076, 1),
  (4661, 1),
  (54, 1),
  (4656, 1),
  (4660, 1),
  (60, 1),
  (309, 1),
  (2563, 1),
  (1345, 1),
  (834, 1),
  (182, 1),
  (73, 1),
  (330, 1),
  (55, 1),
  (403, 1),
  (4109, 1),
  (1361, 1),
  (84, 1),
  (463, 1),
  (599, 1),
  (335, 1),
  (93, 1),
  (94, 1),
  (38, 1),
  (1254, 1),
  (231, 1),
  (3176, 1),
  (1511, 1),
  (239, 1),
  (2928, 1),
  (499, 1),
  (244, 1),
  (4663, 1),
  (2431, 1)],
 [(128, 1),
  (1345, 1),
  (4, 1),
  (4641, 1),
  (330, 1),
  (207, 1),
  (2928, 1),
  (627, 1),
  (1076, 1),
  (725, 1),
  (4664, 1)],
 [(128, 1),
  (1, 1),
  (771, 1),
  (4, 1),
  (1367, 1),
  (780, 1),
  (13, 1),
  (14, 1),
  (3983, 1),
  (785, 1),
  (787, 1),
  (3928, 1),
  (23, 1),
  (1434, 1),
  (283, 1),
  (1446, 1),
  (1320, 1),
  (174, 1),
  (50, 1),
  (180, 1),
  (185, 1),
  (698, 1),
  (699, 1),
  (60, 1),
  (327, 1),
  (74, 1),
  (1483, 1),
  (207, 1),
  (3920, 1),
  (1106, 1),
  (84, 1),
  (214, 1),
  (4665, 1),
  (600, 1),
  (4666, 1),
  (2014, 1),
  (380, 1),
  (490, 1),
  (107, 1),
  (2258, 1),
  (246, 1),
  (120, 1),
  (121, 1),
  (764, 1),
  (2301, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (1281, 1),
  (529, 1),
  (18, 1),
  (26, 1),
  (3614, 1),
  (4641, 1),
  (557, 1),
  (1327, 1),
  (182, 1),
  (3897, 1),
  (4667, 1),
  (4668, 1),
  (4669, 1),
  (3774, 1),
  (1345, 1),
  (1603, 1),
  (73, 1),
  (335, 1),
  (214, 1),
  (94, 1),
  (146, 1)],
 [(4256, 1),
  (1345, 1),
  (4, 1),
  (4641, 1),
  (29, 1),
  (140, 1),
  (330, 1),
  (3020, 1),
  (333, 1),
  (1454, 1),
  (173, 1),
  (176, 1),
  (146, 1),
  (2616, 1),
  (672, 1),
  (4672, 1),
  (4670, 1),
  (4671, 1)],
 [(128, 1),
  (4673, 1),
  (4674, 1),
  (1, 1),
  (1509, 1),
  (487, 1),
  (490, 1),
  (267, 1),
  (13, 1),
  (48, 1),
  (635, 1)],
 [(1, 1),
  (4675, 1),
  (36, 1),
  (1545, 1),
  (976, 1),
  (670, 1),
  (23, 1),
  (184, 1),
  (94, 1),
  (149, 1)],
 [(4676, 1),
  (1509, 1),
  (262, 1),
  (10, 1),
  (11, 1),
  (14, 1),
  (1076, 1),
  (439, 1),
  (4, 1),
  (127, 1),
  (30, 1),
  (4677, 1)],
 [(1, 1),
  (2, 1),
  (180, 1),
  (4678, 1),
  (4679, 1),
  (4680, 1),
  (4681, 1),
  (4647, 1),
  (125, 1),
  (1345, 1),
  (207, 1),
  (48, 1),
  (71, 1),
  (203, 1),
  (84, 1),
  (4534, 1),
  (72, 1),
  (601, 1),
  (602, 1),
  (571, 1),
  (1338, 1)],
 [(1, 1),
  (2, 1),
  (3, 1),
  (4, 1),
  (1797, 1),
  (2695, 1),
  (2827, 1),
  (12, 1),
  (526, 1),
  (16, 1),
  (899, 1),
  (30, 1),
  (33, 1),
  (36, 1),
  (552, 1),
  (48, 1),
  (1211, 1),
  (4671, 1),
  (1345, 1),
  (4641, 1),
  (73, 1),
  (4682, 1),
  (84, 1),
  (725, 1),
  (1752, 1),
  (345, 1),
  (93, 1),
  (610, 1),
  (754, 1),
  (121, 1),
  (123, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (3, 1),
  (4, 1),
  (11, 1),
  (14, 1),
  (1938, 1),
  (2067, 1),
  (1940, 1),
  (672, 1),
  (4641, 1),
  (691, 1),
  (1206, 1),
  (1338, 1),
  (1345, 1),
  (73, 1),
  (4683, 1),
  (4684, 1),
  (4685, 1),
  (4686, 1),
  (4570, 1),
  (1509, 1),
  (492, 1),
  (3694, 1),
  (1399, 1),
  (127, 1)],
 [(1, 1),
  (419, 1),
  (1254, 1),
  (1345, 1),
  (2827, 1),
  (173, 1),
  (48, 1),
  (84, 1),
  (1174, 1),
  (1211, 1),
  (30, 1)],
 [(1, 1), (419, 1), (1193, 1), (618, 1), (14, 1), (10, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (100, 1),
  (690, 1),
  (262, 1),
  (73, 1),
  (106, 1),
  (107, 1),
  (140, 1),
  (322, 1),
  (13, 1),
  (1106, 1),
  (180, 1),
  (150, 1),
  (25, 1),
  (184, 1),
  (185, 1),
  (699, 1),
  (151, 1),
  (550, 1)],
 [(1, 1),
  (4, 1),
  (38, 1),
  (4689, 1),
  (1065, 1),
  (1994, 1),
  (267, 1),
  (207, 1),
  (4687, 1),
  (4688, 1),
  (529, 1),
  (2067, 1),
  (1174, 1),
  (1339, 1)],
 [(1, 1), (487, 1), (1384, 1), (10, 1), (267, 1), (335, 1), (342, 1)],
 [(1, 1),
  (1508, 1),
  (1254, 1),
  (230, 1),
  (1345, 1),
  (298, 1),
  (50, 1),
  (654, 1),
  (385, 1),
  (4690, 1),
  (182, 1),
  (60, 1),
  (991, 1)],
 [(4, 1),
  (2774, 1),
  (2695, 1),
  (3162, 1),
  (3141, 1),
  (4641, 1),
  (342, 1),
  (294, 1),
  (1578, 1),
  (1345, 1),
  (1733, 1),
  (2632, 1),
  (73, 1),
  (330, 1),
  (1882, 1),
  (1101, 1),
  (4691, 1),
  (4692, 1),
  (4693, 1),
  (4694, 1),
  (1498, 1),
  (4443, 1),
  (479, 1),
  (2288, 1),
  (245, 1),
  (1399, 1)],
 [(1, 1),
  (2, 1),
  (1571, 1),
  (4, 1),
  (550, 1),
  (1345, 1),
  (1545, 1),
  (4695, 1),
  (14, 1),
  (4655, 1),
  (720, 1),
  (4696, 1),
  (4641, 1),
  (54, 1),
  (23, 1),
  (280, 1),
  (4443, 1),
  (4670, 1),
  (1045, 1)],
 [(552, 1), (1, 1), (2, 1), (557, 1)],
 [(128, 1),
  (1, 1),
  (4, 1),
  (4697, 1),
  (1345, 1),
  (1097, 1),
  (1399, 1),
  (335, 1),
  (176, 1),
  (691, 1),
  (1076, 1),
  (4641, 1),
  (246, 1),
  (119, 1),
  (23, 1),
  (100, 1),
  (3162, 1),
  (1199, 1),
  (2313, 1),
  (245, 1)],
 [(263, 1),
  (1345, 1),
  (4, 1),
  (22, 1),
  (550, 1),
  (4641, 1),
  (10, 1),
  (1419, 1),
  (77, 1),
  (725, 1),
  (342, 1),
  (4443, 1)],
 [(2, 1),
  (4, 1),
  (3084, 1),
  (1549, 1),
  (14, 1),
  (1554, 1),
  (2067, 1),
  (20, 1),
  (1045, 1),
  (24, 1),
  (540, 1),
  (602, 1),
  (4641, 1),
  (1582, 1),
  (48, 1),
  (4664, 1),
  (571, 1),
  (61, 1),
  (4671, 1),
  (4704, 1),
  (3141, 1),
  (73, 1),
  (13, 1),
  (600, 1),
  (4698, 1),
  (4699, 1),
  (4700, 1),
  (4701, 1),
  (4702, 1),
  (4703, 1),
  (608, 1),
  (4705, 1),
  (4706, 1),
  (4707, 1),
  (4708, 1),
  (4709, 1),
  (4710, 1),
  (4711, 1),
  (4712, 1),
  (4713, 1),
  (106, 1),
  (110, 1),
  (121, 1),
  (128, 1),
  (645, 1),
  (138, 1),
  (146, 1),
  (1391, 1),
  (1866, 1),
  (1193, 1),
  (173, 1),
  (176, 1),
  (691, 1),
  (182, 1),
  (187, 1),
  (196, 1),
  (203, 1),
  (204, 1),
  (214, 1),
  (226, 1),
  (739, 1),
  (2796, 1),
  (1777, 1),
  (1779, 1),
  (244, 1),
  (245, 1),
  (1277, 1),
  (2307, 1),
  (263, 1),
  (2834, 1),
  (1814, 1),
  (1825, 1),
  (1339, 1),
  (1345, 1),
  (1863, 1),
  (328, 1),
  (330, 1),
  (1868, 1),
  (1869, 1),
  (2898, 1),
  (3924, 1),
  (858, 1),
  (3934, 1),
  (876, 1),
  (12, 1),
  (573, 1),
  (1399, 1),
  (903, 1),
  (394, 1),
  (1942, 1),
  (1437, 1),
  (2473, 1),
  (755, 1),
  (1097, 1),
  (440, 1),
  (3003, 1),
  (1354, 1),
  (465, 1),
  (3540, 1),
  (1494, 1),
  (169, 1),
  (1507, 1),
  (1509, 1),
  (1015, 1)],
 [(4, 1),
  (1158, 1),
  (12, 1),
  (4109, 1),
  (1678, 1),
  (1938, 1),
  (2067, 1),
  (2196, 1),
  (1902, 1),
  (1174, 1),
  (24, 1),
  (1564, 1),
  (858, 1),
  (30, 1),
  (1055, 1),
  (4641, 1),
  (36, 1),
  (146, 1),
  (2088, 1),
  (2350, 1),
  (4701, 1),
  (48, 1),
  (945, 1),
  (4723, 1),
  (180, 1),
  (309, 1),
  (4662, 1),
  (1079, 1),
  (1080, 1),
  (4724, 1),
  (1211, 1),
  (1598, 1),
  (1345, 1),
  (4677, 1),
  (4727, 1),
  (1740, 1),
  (13, 1),
  (214, 1),
  (1754, 1),
  (93, 1),
  (4702, 1),
  (182, 1),
  (1509, 1),
  (1254, 1),
  (4714, 1),
  (4715, 1),
  (4716, 1),
  (4717, 1),
  (4718, 1),
  (4719, 1),
  (4720, 1),
  (4721, 1),
  (4722, 1),
  (147, 1),
  (3162, 1),
  (4725, 1),
  (4726, 1),
  (119, 1),
  (4728, 1),
  (4729, 1),
  (1147, 1),
  (1148, 1),
  (2026, 1),
  (149, 1)],
 [(4736, 1),
  (1, 1),
  (2178, 1),
  (134, 1),
  (4737, 1),
  (2312, 1),
  (558, 1),
  (3997, 1),
  (1313, 1),
  (14, 1),
  (15, 1),
  (1171, 1),
  (2453, 1),
  (26, 1),
  (156, 1),
  (1434, 1),
  (30, 1),
  (2335, 1),
  (161, 1),
  (35, 1),
  (36, 1),
  (262, 1),
  (2855, 1),
  (1320, 1),
  (41, 1),
  (1452, 1),
  (173, 1),
  (174, 1),
  (1711, 1),
  (180, 1),
  (187, 1),
  (61, 1),
  (446, 1),
  (1222, 1),
  (762, 1),
  (12, 1),
  (972, 1),
  (2638, 1),
  (1106, 1),
  (4566, 1),
  (600, 1),
  (1499, 1),
  (92, 1),
  (4218, 1),
  (2146, 1),
  (867, 1),
  (1128, 1),
  (4732, 1),
  (29, 1),
  (82, 1),
  (113, 1),
  (370, 1),
  (1524, 1),
  (1193, 1),
  (4730, 1),
  (4731, 1),
  (764, 1),
  (4733, 1),
  (4734, 1),
  (4735, 1)],
 [(1345, 1),
  (2, 1),
  (3, 1),
  (4, 1),
  (4641, 1),
  (1354, 1),
  (173, 1),
  (14, 1),
  (246, 1),
  (23, 1),
  (283, 1)],
 [(4, 1), (4738, 1), (2563, 1), (20, 1), (29, 1)],
 [(16, 1), (129, 1), (4740, 1), (4739, 1), (4, 1)],
 [(1, 1),
  (131, 1),
  (4740, 1),
  (4741, 1),
  (769, 1),
  (908, 1),
  (16, 1),
  (147, 1),
  (149, 1),
  (4, 1),
  (2596, 1),
  (1964, 1),
  (180, 1),
  (62, 1),
  (1632, 1),
  (74, 1),
  (848, 1),
  (1490, 1),
  (3039, 1),
  (3920, 1),
  (993, 1),
  (2789, 1),
  (616, 1),
  (2540, 1),
  (1902, 1),
  (117, 1),
  (127, 1)],
 [(1, 1), (4, 1), (262, 1), (330, 1), (207, 1), (117, 1), (682, 1)],
 [(635, 1),
  (4, 1),
  (4742, 1),
  (582, 1),
  (4743, 1),
  (4744, 1),
  (486, 1),
  (618, 1),
  (50, 1),
  (114, 1),
  (147, 1),
  (117, 1),
  (183, 1),
  (248, 1),
  (4185, 1),
  (3690, 1),
  (444, 1),
  (1738, 1),
  (4740, 1)],
 [(4352, 1),
  (1, 1),
  (2, 1),
  (171, 1),
  (4, 1),
  (903, 1),
  (4745, 1),
  (4746, 1),
  (4747, 1),
  (4748, 1),
  (13, 1),
  (14, 1),
  (4751, 1),
  (2064, 1),
  (1045, 1),
  (150, 1),
  (1816, 1),
  (4127, 1),
  (4749, 1),
  (1954, 1),
  (292, 1),
  (327, 1),
  (173, 1),
  (463, 1),
  (50, 1),
  (908, 1),
  (2313, 1),
  (184, 1),
  (60, 1),
  (701, 1),
  (4542, 1),
  (321, 1),
  (709, 1),
  (4423, 1),
  (73, 1),
  (1867, 1),
  (2445, 1),
  (976, 1),
  (4561, 1),
  (4562, 1),
  (4750, 1),
  (3542, 1),
  (2803, 1),
  (602, 1),
  (1499, 1),
  (94, 1),
  (4752, 1),
  (741, 1),
  (445, 1),
  (497, 1),
  (1011, 1),
  (2036, 1),
  (631, 1),
  (121, 1)],
 [(2, 1),
  (4395, 1),
  (4, 1),
  (14, 1),
  (4753, 1),
  (4754, 1),
  (4755, 1),
  (4756, 1),
  (789, 1),
  (292, 1),
  (550, 1),
  (2307, 1),
  (171, 1),
  (4284, 1),
  (701, 1),
  (1474, 1),
  (1097, 1),
  (342, 1),
  (101, 1),
  (997, 1),
  (608, 1),
  (635, 1),
  (294, 1),
  (616, 1),
  (106, 1),
  (110, 1),
  (1271, 1),
  (121, 1),
  (123, 1),
  (4757, 1)],
 [(1, 1),
  (2, 1),
  (1738, 1),
  (170, 1),
  (1362, 1),
  (173, 1),
  (13, 1),
  (848, 1),
  (178, 1),
  (117, 1),
  (248, 1),
  (121, 1),
  (29, 1),
  (1502, 1),
  (447, 1)],
 [(2, 1),
  (4, 1),
  (2182, 1),
  (9, 1),
  (1421, 1),
  (18, 1),
  (4758, 1),
  (4759, 1),
  (4760, 1),
  (4761, 1),
  (1435, 1),
  (180, 1),
  (567, 1),
  (3892, 1),
  (187, 1),
  (2501, 1),
  (73, 1),
  (183, 1),
  (1740, 1),
  (1489, 1),
  (1490, 1),
  (215, 1),
  (608, 1),
  (234, 1),
  (4562, 1),
  (1902, 1),
  (631, 1),
  (248, 1),
  (1531, 1),
  (1918, 1),
  (1023, 1)],
 [(1, 1),
  (100, 1),
  (3827, 1),
  (2024, 1),
  (457, 1),
  (299, 1),
  (1452, 1),
  (173, 1),
  (13, 1),
  (48, 1),
  (658, 1),
  (787, 1),
  (84, 1),
  (1367, 1),
  (23, 1),
  (383, 1),
  (764, 1),
  (293, 1)],
 [(1, 1), (583, 1), (3250, 1), (117, 1), (4250, 1), (123, 1)],
 [(608, 1),
  (4763, 1),
  (292, 1),
  (616, 1),
  (9, 1),
  (300, 1),
  (461, 1),
  (4762, 1),
  (123, 1)],
 [(4765, 1),
  (1, 1),
  (2, 1),
  (263, 1),
  (616, 1),
  (170, 1),
  (143, 1),
  (497, 1),
  (146, 1),
  (147, 1),
  (150, 1),
  (762, 1),
  (4764, 1),
  (1338, 1)],
 [(1, 1),
  (2011, 1),
  (309, 1),
  (3367, 1),
  (616, 1),
  (169, 1),
  (1259, 1),
  (13, 1),
  (687, 1),
  (741, 1),
  (1397, 1),
  (24, 1),
  (345, 1),
  (187, 1),
  (117, 1)],
 [(512, 1),
  (4, 1),
  (2182, 1),
  (908, 1),
  (60, 1),
  (147, 1),
  (4740, 1),
  (4766, 1),
  (4767, 1),
  (4768, 1),
  (4769, 1),
  (34, 1),
  (4771, 1),
  (2596, 1),
  (3366, 1),
  (169, 1),
  (50, 1),
  (188, 1),
  (1985, 1),
  (583, 1),
  (160, 1),
  (2124, 1),
  (4770, 1),
  (1490, 1),
  (212, 1),
  (1508, 1),
  (100, 1),
  (444, 1),
  (2412, 1),
  (114, 1),
  (117, 1),
  (3709, 1)],
 [(1, 1), (306, 1), (591, 1), (4772, 1), (23, 1)],
 [(1, 1), (10, 1), (13, 1), (365, 1), (50, 1), (307, 1), (24, 1), (93, 1)],
 [(1, 1),
  (2, 1),
  (1594, 1),
  (4, 1),
  (137, 1),
  (10, 1),
  (12, 1),
  (3085, 1),
  (2066, 1),
  (150, 1),
  (26, 1),
  (670, 1),
  (545, 1),
  (291, 1),
  (4773, 1),
  (4774, 1),
  (4775, 1),
  (4776, 1),
  (937, 1),
  (4778, 1),
  (4779, 1),
  (4780, 1),
  (4781, 1),
  (4782, 1),
  (4783, 1),
  (176, 1),
  (306, 1),
  (30, 1),
  (567, 1),
  (628, 1),
  (954, 1),
  (13, 1),
  (4670, 1),
  (1472, 1),
  (330, 1),
  (695, 1),
  (461, 1),
  (463, 1),
  (848, 1),
  (1874, 1),
  (2908, 1),
  (93, 1),
  (990, 1),
  (1760, 1),
  (2018, 1),
  (1659, 1),
  (4713, 1),
  (616, 1),
  (1338, 1),
  (1132, 1),
  (61, 1),
  (2344, 1),
  (1001, 1),
  (244, 1),
  (117, 1),
  (4777, 1),
  (3193, 1),
  (123, 1)],
 [(1, 1),
  (99, 1),
  (4, 1),
  (616, 1),
  (1099, 1),
  (1646, 1),
  (879, 1),
  (3763, 1),
  (180, 1),
  (55, 1),
  (122, 1),
  (123, 1),
  (95, 1)],
 [(2432, 1),
  (1, 1),
  (264, 1),
  (778, 1),
  (140, 1),
  (1678, 1),
  (1681, 1),
  (2066, 1),
  (787, 1),
  (670, 1),
  (48, 1),
  (4520, 1),
  (939, 1),
  (4784, 1),
  (4785, 1),
  (4786, 1),
  (4787, 1),
  (53, 1),
  (55, 1),
  (61, 1),
  (2757, 1),
  (567, 1),
  (14, 1),
  (600, 1),
  (990, 1),
  (1123, 1),
  (2291, 1)],
 [(1, 1),
  (1222, 1),
  (1286, 1),
  (1953, 1),
  (74, 1),
  (207, 1),
  (4788, 1),
  (61, 1)],
 [(1, 1),
  (2, 1),
  (2702, 1),
  (911, 1),
  (16, 1),
  (529, 1),
  (2066, 1),
  (937, 1),
  (1962, 1),
  (175, 1),
  (4789, 1),
  (695, 1),
  (2500, 1),
  (456, 1),
  (55, 1),
  (207, 1),
  (977, 1),
  (1362, 1),
  (4436, 1),
  (1116, 1),
  (618, 1),
  (492, 1),
  (3192, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (981, 1),
  (4, 1),
  (4790, 1),
  (0, 1),
  (616, 1),
  (1100, 1),
  (1024, 1),
  (2287, 1),
  (370, 1),
  (1397, 1),
  (54, 1),
  (4791, 1),
  (4792, 1),
  (4793, 1),
  (122, 1),
  (28, 1),
  (3578, 1),
  (1023, 1)],
 [(3073, 1),
  (939, 1),
  (4, 1),
  (2086, 1),
  (616, 1),
  (1193, 1),
  (567, 1),
  (13, 1),
  (631, 1),
  (24, 1),
  (121, 1),
  (4794, 1),
  (4795, 1),
  (3710, 1),
  (479, 1)],
 [(608, 1), (1, 1), (394, 1), (77, 1), (14, 1), (150, 1), (4796, 1)],
 [(1, 1), (2, 1), (10, 1), (180, 1), (150, 1), (61, 1)],
 [(3741, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (1317, 1),
  (13, 1),
  (173, 1),
  (125, 1),
  (50, 1),
  (340, 1),
  (4798, 1),
  (246, 1),
  (708, 1),
  (448, 1),
  (60, 1),
  (4797, 1),
  (2206, 1)],
 [(1, 1), (10, 1), (123, 1), (150, 1)],
 [(1, 1),
  (616, 1),
  (48, 1),
  (2066, 1),
  (1331, 1),
  (23, 1),
  (280, 1),
  (121, 1),
  (4799, 1)],
 [(4800, 1),
  (1, 1),
  (2, 1),
  (2088, 1),
  (240, 1),
  (499, 1),
  (368, 1),
  (147, 1),
  (1045, 1),
  (55, 1),
  (762, 1)],
 [(2, 1),
  (1896, 1),
  (106, 1),
  (3692, 1),
  (2770, 1),
  (718, 1),
  (616, 1),
  (50, 1),
  (468, 1),
  (2702, 1),
  (23, 1),
  (440, 1),
  (29, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (12, 1),
  (147, 1),
  (1813, 1),
  (25, 1),
  (169, 1),
  (48, 1),
  (2865, 1),
  (61, 1),
  (4801, 1),
  (4802, 1),
  (4803, 1),
  (4804, 1),
  (73, 1),
  (1100, 1),
  (2904, 1),
  (608, 1),
  (616, 1),
  (362, 1),
  (492, 1),
  (370, 1),
  (887, 1),
  (764, 1),
  (277, 1)],
 [(2816, 1),
  (1, 1),
  (226, 1),
  (50, 1),
  (55, 1),
  (1017, 1),
  (187, 1),
  (60, 1),
  (2239, 1)],
 [(128, 1),
  (1, 1),
  (299, 1),
  (4, 1),
  (30, 1),
  (267, 1),
  (652, 1),
  (1165, 1),
  (1681, 1),
  (2066, 1),
  (151, 1),
  (920, 1),
  (4635, 1),
  (670, 1),
  (197, 1),
  (34, 1),
  (3494, 1),
  (169, 1),
  (42, 1),
  (939, 1),
  (93, 1),
  (48, 1),
  (180, 1),
  (53, 1),
  (567, 1),
  (3003, 1),
  (60, 1),
  (13, 1),
  (4805, 1),
  (4806, 1),
  (55, 1),
  (1677, 1),
  (1162, 1),
  (463, 1),
  (477, 1),
  (616, 1),
  (1132, 1),
  (61, 1),
  (383, 1),
  (511, 1)],
 [(1, 1),
  (550, 1),
  (103, 1),
  (4808, 1),
  (204, 1),
  (4809, 1),
  (4807, 1),
  (492, 1),
  (2066, 1),
  (2703, 1),
  (306, 1),
  (116, 1),
  (1973, 1),
  (999, 1),
  (762, 1),
  (573, 1),
  (1874, 1),
  (61, 1),
  (990, 1),
  (4141, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (1092, 1),
  (22, 1),
  (520, 1),
  (937, 1),
  (4810, 1),
  (2066, 1),
  (340, 1),
  (53, 1),
  (150, 1),
  (55, 1),
  (61, 1),
  (670, 1)],
 [(0, 1),
  (1, 1),
  (4, 1),
  (1797, 1),
  (10, 1),
  (15, 1),
  (150, 1),
  (1947, 1),
  (670, 1),
  (673, 1),
  (2088, 1),
  (174, 1),
  (303, 1),
  (53, 1),
  (695, 1),
  (61, 1),
  (4811, 1),
  (2502, 1),
  (1483, 1),
  (3419, 1),
  (1116, 1),
  (1246, 1),
  (110, 1),
  (1011, 1),
  (756, 1),
  (55, 1)],
 [(1, 1),
  (2, 1),
  (771, 1),
  (968, 1),
  (73, 1),
  (106, 1),
  (183, 1),
  (77, 1),
  (34, 1),
  (146, 1),
  (23, 1),
  (169, 1),
  (573, 1)],
 [(128, 1),
  (4, 1),
  (901, 1),
  (2024, 1),
  (4812, 1),
  (4813, 1),
  (4814, 1),
  (4815, 1),
  (3347, 1),
  (1198, 1),
  (536, 1),
  (3483, 1),
  (61, 1)],
 [(128, 1),
  (1, 1),
  (4, 1),
  (230, 1),
  (330, 1),
  (4816, 1),
  (631, 1),
  (24, 1),
  (100, 1),
  (1275, 1),
  (10, 1),
  (30, 1)],
 [(128, 1),
  (263, 1),
  (1165, 1),
  (1678, 1),
  (15, 1),
  (1681, 1),
  (2066, 1),
  (25, 1),
  (670, 1),
  (673, 1),
  (34, 1),
  (939, 1),
  (53, 1),
  (55, 1),
  (695, 1),
  (73, 1),
  (567, 1),
  (4817, 1),
  (14, 1),
  (599, 1),
  (600, 1),
  (93, 1),
  (990, 1),
  (240, 1),
  (243, 1)],
 [(4, 1), (1106, 1), (4818, 1), (53, 1), (150, 1), (55, 1), (100, 1)],
 [(1, 1),
  (3719, 1),
  (348, 1),
  (1132, 1),
  (557, 1),
  (2962, 1),
  (115, 1),
  (341, 1),
  (4819, 1),
  (60, 1),
  (606, 1),
  (1011, 1)],
 [(1, 1),
  (2, 1),
  (1158, 1),
  (1681, 1),
  (2066, 1),
  (25, 1),
  (670, 1),
  (33, 1),
  (34, 1),
  (262, 1),
  (169, 1),
  (945, 1),
  (53, 1),
  (55, 1),
  (443, 1),
  (573, 1),
  (4289, 1),
  (2757, 1),
  (710, 1),
  (73, 1),
  (695, 1),
  (1106, 1),
  (4820, 1),
  (4821, 1),
  (4822, 1),
  (4823, 1),
  (600, 1),
  (93, 1),
  (738, 1),
  (1128, 1),
  (3821, 1),
  (61, 1),
  (240, 1),
  (497, 1),
  (884, 1),
  (1193, 1),
  (764, 1),
  (125, 1)],
 [(896, 1),
  (1, 1),
  (4, 1),
  (1797, 1),
  (13, 1),
  (16, 1),
  (3220, 1),
  (536, 1),
  (670, 1),
  (288, 1),
  (4260, 1),
  (1317, 1),
  (1962, 1),
  (455, 1),
  (173, 1),
  (176, 1),
  (307, 1),
  (180, 1),
  (182, 1),
  (55, 1),
  (184, 1),
  (2877, 1),
  (2757, 1),
  (71, 1),
  (74, 1),
  (1869, 1),
  (213, 1),
  (4824, 1),
  (4825, 1),
  (4826, 1),
  (4827, 1),
  (4828, 1),
  (4829, 1),
  (610, 1),
  (99, 1),
  (616, 1),
  (107, 1),
  (365, 1),
  (753, 1),
  (1397, 1),
  (3448, 1),
  (383, 1)],
 [(4, 1),
  (1797, 1),
  (14, 1),
  (529, 1),
  (22, 1),
  (24, 1),
  (670, 1),
  (809, 1),
  (939, 1),
  (174, 1),
  (4785, 1),
  (50, 1),
  (53, 1),
  (695, 1),
  (61, 1),
  (1089, 1),
  (55, 1),
  (1106, 1),
  (1364, 1),
  (2135, 1),
  (93, 1),
  (4830, 1),
  (107, 1),
  (120, 1),
  (249, 1),
  (123, 1)],
 [(4352, 1),
  (1, 1),
  (50, 1),
  (114, 1),
  (178, 1),
  (850, 1),
  (13, 1),
  (48, 1),
  (2066, 1),
  (1017, 1),
  (602, 1)],
 [(1, 1),
  (2, 1),
  (23, 1),
  (173, 1),
  (14, 1),
  (48, 1),
  (529, 1),
  (50, 1),
  (150, 1),
  (151, 1),
  (698, 1),
  (699, 1),
  (61, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (262, 1),
  (2305, 1),
  (137, 1),
  (10, 1),
  (1421, 1),
  (14, 1),
  (4497, 1),
  (787, 1),
  (23, 1),
  (280, 1),
  (26, 1),
  (4847, 1),
  (601, 1),
  (3229, 1),
  (30, 1),
  (2079, 1),
  (48, 1),
  (1381, 1),
  (36, 1),
  (421, 1),
  (2215, 1),
  (2011, 1),
  (3113, 1),
  (24, 1),
  (176, 1),
  (4657, 1),
  (1330, 1),
  (1011, 1),
  (180, 1),
  (675, 1),
  (1206, 1),
  (73, 1),
  (184, 1),
  (3508, 1),
  (1338, 1),
  (2335, 1),
  (61, 1),
  (2494, 1),
  (1222, 1),
  (968, 1),
  (1225, 1),
  (1354, 1),
  (76, 1),
  (4834, 1),
  (718, 1),
  (851, 1),
  (214, 1),
  (2904, 1),
  (932, 1),
  (4849, 1),
  (94, 1),
  (4831, 1),
  (4832, 1),
  (4833, 1),
  (482, 1),
  (4835, 1),
  (4836, 1),
  (4837, 1),
  (4838, 1),
  (4839, 1),
  (4840, 1),
  (4841, 1),
  (618, 1),
  (4843, 1),
  (4844, 1),
  (4845, 1),
  (4846, 1),
  (125, 1),
  (4848, 1),
  (1128, 1),
  (243, 1),
  (1652, 1),
  (187, 1),
  (2423, 1),
  (234, 1),
  (1402, 1),
  (4842, 1),
  (2301, 1),
  (1406, 1)],
 [(1, 1),
  (789, 1),
  (150, 1),
  (536, 1),
  (30, 1),
  (2338, 1),
  (37, 1),
  (1193, 1),
  (3882, 1),
  (173, 1),
  (48, 1),
  (187, 1),
  (1345, 1),
  (848, 1),
  (722, 1),
  (3799, 1),
  (88, 1),
  (482, 1),
  (2411, 1),
  (4850, 1),
  (244, 1),
  (149, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (1669, 1),
  (262, 1),
  (257, 1),
  (904, 1),
  (3722, 1),
  (267, 1),
  (14, 1),
  (15, 1),
  (16, 1),
  (2194, 1),
  (150, 1),
  (25, 1),
  (4250, 1),
  (26, 1),
  (30, 1),
  (288, 1),
  (2084, 1),
  (1830, 1),
  (3882, 1),
  (2865, 1),
  (1489, 1),
  (435, 1),
  (54, 1),
  (186, 1),
  (2238, 1),
  (447, 1),
  (1984, 1),
  (139, 1),
  (328, 1),
  (1866, 1),
  (1483, 1),
  (499, 1),
  (976, 1),
  (4856, 1),
  (483, 1),
  (4857, 1),
  (602, 1),
  (479, 1),
  (4859, 1),
  (230, 1),
  (1397, 1),
  (234, 1),
  (107, 1),
  (4861, 1),
  (3696, 1),
  (370, 1),
  (4851, 1),
  (4852, 1),
  (4853, 1),
  (4854, 1),
  (4855, 1),
  (248, 1),
  (1017, 1),
  (4858, 1),
  (123, 1),
  (4860, 1),
  (682, 1),
  (254, 1),
  (127, 1)],
 [(1, 1),
  (1154, 1),
  (616, 1),
  (10, 1),
  (207, 1),
  (529, 1),
  (147, 1),
  (150, 1),
  (24, 1),
  (762, 1),
  (30, 1),
  (447, 1)],
 [(4864, 1),
  (1, 1),
  (4866, 1),
  (4867, 1),
  (4868, 1),
  (4865, 1),
  (267, 1),
  (12, 1),
  (153, 1),
  (671, 1),
  (173, 1),
  (1345, 1),
  (455, 1),
  (1483, 1),
  (2133, 1),
  (1130, 1),
  (240, 1),
  (1017, 1),
  (1788, 1),
  (381, 1),
  (4862, 1),
  (4863, 1)],
 [(1, 1), (3, 1), (616, 1), (73, 1), (140, 1), (1011, 1), (117, 1)],
 [(1152, 1),
  (4609, 1),
  (2, 1),
  (4, 1),
  (4869, 1),
  (2182, 1),
  (1, 1),
  (4872, 1),
  (4873, 1),
  (4874, 1),
  (4875, 1),
  (4876, 1),
  (2575, 1),
  (150, 1),
  (4868, 1),
  (4254, 1),
  (33, 1),
  (292, 1),
  (4870, 1),
  (3882, 1),
  (4871, 1),
  (557, 1),
  (30, 1),
  (60, 1),
  (1343, 1),
  (1345, 1),
  (1092, 1),
  (198, 1),
  (2125, 1),
  (848, 1),
  (3032, 1),
  (480, 1),
  (1130, 1),
  (2928, 1),
  (2162, 1),
  (2803, 1),
  (884, 1),
  (2039, 1)],
 [(176, 1),
  (34, 1),
  (1, 1),
  (487, 1),
  (4872, 1),
  (3882, 1),
  (267, 1),
  (557, 1),
  (4878, 1),
  (4877, 1),
  (48, 1),
  (114, 1),
  (151, 1),
  (408, 1)],
 [(720, 1),
  (867, 1),
  (1830, 1),
  (1, 1),
  (73, 1),
  (3882, 1),
  (13, 1),
  (557, 1),
  (321, 1),
  (173, 1),
  (176, 1),
  (2608, 1),
  (123, 1),
  (62, 1)],
 [(672, 1), (1, 1), (10, 1), (48, 1), (149, 1), (22, 1), (23, 1), (3882, 1)],
 [(0, 1),
  (1, 1),
  (134, 1),
  (4872, 1),
  (128, 1),
  (267, 1),
  (12, 1),
  (13, 1),
  (4879, 1),
  (4880, 1),
  (4881, 1),
  (4882, 1),
  (4883, 1),
  (149, 1),
  (24, 1),
  (30, 1),
  (3882, 1),
  (1835, 1),
  (557, 1),
  (48, 1),
  (2440, 1),
  (182, 1),
  (197, 1),
  (985, 1),
  (477, 1),
  (1505, 1),
  (1768, 1),
  (114, 1)],
 [(1, 1),
  (2, 1),
  (267, 1),
  (12, 1),
  (13, 1),
  (182, 1),
  (2138, 1),
  (573, 1),
  (30, 1),
  (479, 1)],
 [(1, 1), (2, 1), (867, 1), (3882, 1), (557, 1), (4884, 1)],
 [(1, 1),
  (34, 1),
  (1830, 1),
  (33, 1),
  (1481, 1),
  (3882, 1),
  (1101, 1),
  (848, 1),
  (2904, 1),
  (4885, 1),
  (408, 1),
  (62, 1)],
 [(4609, 1),
  (4, 1),
  (773, 1),
  (903, 1),
  (4872, 1),
  (267, 1),
  (4886, 1),
  (4887, 1),
  (4888, 1),
  (4889, 1),
  (4890, 1),
  (4891, 1),
  (150, 1),
  (548, 1),
  (3882, 1),
  (557, 1),
  (48, 1),
  (3384, 1),
  (187, 1),
  (1087, 1),
  (455, 1),
  (2124, 1),
  (972, 1),
  (1101, 1),
  (78, 1),
  (473, 1),
  (1505, 1),
  (1339, 1),
  (1001, 1),
  (3821, 1),
  (884, 1),
  (345, 1)],
 [(1, 1), (578, 1), (199, 1), (3882, 1), (943, 1), (26, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (9, 1),
  (522, 1),
  (4619, 1),
  (13, 1),
  (16, 1),
  (536, 1),
  (25, 1),
  (26, 1),
  (29, 1),
  (30, 1),
  (31, 1),
  (35, 1),
  (37, 1),
  (38, 1),
  (2088, 1),
  (4139, 1),
  (45, 1),
  (307, 1),
  (48, 1),
  (54, 1),
  (57, 1),
  (58, 1),
  (2619, 1),
  (60, 1),
  (2229, 1),
  (3648, 1),
  (3141, 1),
  (73, 1),
  (587, 1),
  (610, 1),
  (78, 1),
  (80, 1),
  (1617, 1),
  (1106, 1),
  (2132, 1),
  (3671, 1),
  (602, 1),
  (1122, 1),
  (100, 1),
  (103, 1),
  (1128, 1),
  (106, 1),
  (4716, 1),
  (110, 1),
  (1648, 1),
  (626, 1),
  (446, 1),
  (3702, 1),
  (2324, 1),
  (1658, 1),
  (3707, 1),
  (128, 1),
  (642, 1),
  (3715, 1),
  (3608, 1),
  (3732, 1),
  (149, 1),
  (2198, 1),
  (4915, 1),
  (2202, 1),
  (156, 1),
  (3229, 1),
  (672, 1),
  (165, 1),
  (169, 1),
  (682, 1),
  (691, 1),
  (773, 1),
  (286, 1),
  (185, 1),
  (4127, 1),
  (2246, 1),
  (2766, 1),
  (207, 1),
  (774, 1),
  (213, 1),
  (214, 1),
  (3193, 1),
  (4824, 1),
  (737, 1),
  (229, 1),
  (234, 1),
  (245, 1),
  (759, 1),
  (298, 1),
  (769, 1),
  (4566, 1),
  (262, 1),
  (2861, 1),
  (2322, 1),
  (788, 1),
  (277, 1),
  (4375, 1),
  (280, 1),
  (282, 1),
  (1327, 1),
  (4892, 1),
  (4893, 1),
  (4894, 1),
  (4895, 1),
  (4896, 1),
  (4897, 1),
  (4898, 1),
  (4899, 1),
  (4900, 1),
  (4901, 1),
  (4902, 1),
  (4903, 1),
  (4904, 1),
  (4905, 1),
  (4906, 1),
  (4907, 1),
  (4908, 1),
  (4909, 1),
  (4910, 1),
  (4911, 1),
  (4912, 1),
  (4913, 1),
  (4914, 1),
  (4403, 1),
  (4916, 1),
  (4917, 1),
  (4918, 1),
  (312, 1),
  (314, 1),
  (3397, 1),
  (328, 1),
  (1353, 1),
  (330, 1),
  (2893, 1),
  (3920, 1),
  (1874, 1),
  (1367, 1),
  (2107, 1),
  (873, 1),
  (2924, 1),
  (1902, 1),
  (1399, 1),
  (2437, 1),
  (903, 1),
  (397, 1),
  (911, 1),
  (1427, 1),
  (2332, 1),
  (3483, 1),
  (150, 1),
  (928, 1),
  (937, 1),
  (939, 1),
  (942, 1),
  (1455, 1),
  (2994, 1),
  (918, 1),
  (439, 1),
  (444, 1),
  (1982, 1),
  (1474, 1),
  (459, 1),
  (463, 1),
  (2004, 1),
  (470, 1),
  (3545, 1),
  (986, 1),
  (482, 1),
  (499, 1),
  (2473, 1),
  (511, 1)],
 [(48, 1), (2, 1), (117, 1), (4919, 1)],
 [(1, 1),
  (899, 1),
  (5, 1),
  (4872, 1),
  (4363, 1),
  (3032, 1),
  (21, 1),
  (4886, 1),
  (791, 1),
  (3224, 1),
  (26, 1),
  (2203, 1),
  (1058, 1),
  (3882, 1),
  (557, 1),
  (48, 1),
  (949, 1),
  (182, 1),
  (183, 1),
  (4920, 1),
  (4921, 1),
  (4922, 1),
  (1339, 1),
  (4924, 1),
  (4925, 1),
  (574, 1),
  (2111, 1),
  (1345, 1),
  (267, 1),
  (2500, 1),
  (1223, 1),
  (328, 1),
  (1097, 1),
  (330, 1),
  (210, 1),
  (4821, 1),
  (2904, 1),
  (1497, 1),
  (858, 1),
  (734, 1),
  (96, 1),
  (225, 1),
  (4923, 1),
  (3557, 1),
  (486, 1),
  (338, 1),
  (73, 1),
  (114, 1),
  (121, 1),
  (1276, 1),
  (682, 1),
  (126, 1)],
 [(1, 1),
  (264, 1),
  (267, 1),
  (301, 1),
  (538, 1),
  (2716, 1),
  (30, 1),
  (557, 1),
  (176, 1),
  (54, 1),
  (4926, 1),
  (4671, 1),
  (4928, 1),
  (4929, 1),
  (2167, 1),
  (1490, 1),
  (988, 1),
  (605, 1),
  (483, 1),
  (613, 1),
  (486, 1),
  (338, 1),
  (114, 1),
  (1399, 1),
  (4927, 1),
  (4861, 1),
  (4479, 1)],
 [(1, 1),
  (491, 1),
  (342, 1),
  (73, 1),
  (267, 1),
  (13, 1),
  (240, 1),
  (1938, 1),
  (150, 1)],
 [(1, 1),
  (2, 1),
  (5, 1),
  (73, 1),
  (173, 1),
  (14, 1),
  (239, 1),
  (244, 1),
  (4930, 1)],
 [(1, 1),
  (3, 1),
  (4932, 1),
  (230, 1),
  (616, 1),
  (267, 1),
  (12, 1),
  (653, 1),
  (4931, 1),
  (3829, 1),
  (26, 1)],
 [(1152, 1),
  (1, 1),
  (2050, 1),
  (4, 1),
  (5, 1),
  (1158, 1),
  (10, 1),
  (267, 1),
  (13, 1),
  (1554, 1),
  (788, 1),
  (2453, 1),
  (22, 1),
  (23, 1),
  (4889, 1),
  (26, 1),
  (27, 1),
  (30, 1),
  (290, 1),
  (675, 1),
  (292, 1),
  (1830, 1),
  (3882, 1),
  (557, 1),
  (48, 1),
  (328, 1),
  (182, 1),
  (184, 1),
  (1339, 1),
  (831, 1),
  (4933, 1),
  (4934, 1),
  (4935, 1),
  (4936, 1),
  (4937, 1),
  (4938, 1),
  (333, 1),
  (342, 1),
  (3672, 1),
  (90, 1),
  (1083, 1),
  (999, 1),
  (106, 1),
  (103, 1),
  (239, 1),
  (1648, 1),
  (3057, 1),
  (4851, 1),
  (246, 1),
  (170, 1),
  (3706, 1),
  (298, 1)],
 [(2, 1),
  (4, 1),
  (5, 1),
  (1367, 1),
  (12, 1),
  (13, 1),
  (14, 1),
  (15, 1),
  (16, 1),
  (529, 1),
  (3604, 1),
  (23, 1),
  (24, 1),
  (30, 1),
  (35, 1),
  (37, 1),
  (42, 1),
  (557, 1),
  (48, 1),
  (60, 1),
  (62, 1),
  (1101, 1),
  (4180, 1),
  (88, 1),
  (94, 1),
  (2146, 1),
  (110, 1),
  (3696, 1),
  (114, 1),
  (628, 1),
  (2165, 1),
  (121, 1),
  (635, 1),
  (1660, 1),
  (125, 1),
  (128, 1),
  (1156, 1),
  (278, 1),
  (140, 1),
  (1677, 1),
  (146, 1),
  (169, 1),
  (171, 1),
  (173, 1),
  (175, 1),
  (176, 1),
  (178, 1),
  (180, 1),
  (3257, 1),
  (701, 1),
  (207, 1),
  (723, 1),
  (229, 1),
  (2795, 1),
  (1266, 1),
  (243, 1),
  (3829, 1),
  (1788, 1),
  (773, 1),
  (4872, 1),
  (780, 1),
  (787, 1),
  (1814, 1),
  (293, 1),
  (3882, 1),
  (299, 1),
  (3384, 1),
  (317, 1),
  (330, 1),
  (4939, 1),
  (4940, 1),
  (4941, 1),
  (4942, 1),
  (4943, 1),
  (4944, 1),
  (4945, 1),
  (4946, 1),
  (4947, 1),
  (4948, 1),
  (4949, 1),
  (4950, 1),
  (4951, 1),
  (4952, 1),
  (4953, 1),
  (4954, 1),
  (884, 1),
  (899, 1),
  (2985, 1),
  (946, 1),
  (3003, 1),
  (245, 1),
  (2502, 1),
  (3020, 1),
  (463, 1),
  (3537, 1),
  (4053, 1),
  (3032, 1),
  (1511, 1),
  (1008, 1),
  (1017, 1),
  (3578, 1)],
 [(4, 1),
  (486, 1),
  (262, 1),
  (872, 1),
  (169, 1),
  (2574, 1),
  (399, 1),
  (48, 1),
  (4216, 1),
  (307, 1),
  (149, 1),
  (150, 1),
  (184, 1),
  (602, 1),
  (4955, 1),
  (4956, 1),
  (4957, 1),
  (4958, 1),
  (383, 1)],
 [(131, 1),
  (260, 1),
  (4116, 1),
  (149, 1),
  (4, 1),
  (2202, 1),
  (288, 1),
  (37, 1),
  (4006, 1),
  (173, 1),
  (50, 1),
  (60, 1),
  (1469, 1),
  (62, 1),
  (4960, 1),
  (2758, 1),
  (4959, 1),
  (608, 1),
  (4961, 1),
  (4962, 1),
  (4963, 1),
  (4964, 1),
  (1509, 1),
  (917, 1)],
 [(1, 1),
  (2, 1),
  (1030, 1),
  (520, 1),
  (13, 1),
  (1551, 1),
  (144, 1),
  (1681, 1),
  (147, 1),
  (150, 1),
  (151, 1),
  (2079, 1),
  (421, 1),
  (2215, 1),
  (4139, 1),
  (2223, 1),
  (48, 1),
  (180, 1),
  (182, 1),
  (1421, 1),
  (77, 1),
  (3597, 1),
  (1488, 1),
  (4344, 1),
  (1362, 1),
  (214, 1),
  (207, 1),
  (993, 1),
  (4707, 1),
  (4965, 1),
  (4966, 1),
  (4967, 1),
  (616, 1),
  (1011, 1),
  (118, 1),
  (248, 1),
  (720, 1)],
 [(48, 1), (1, 1), (117, 1), (150, 1), (151, 1)],
 [(769, 1),
  (388, 1),
  (2838, 1),
  (1862, 1),
  (3143, 1),
  (169, 1),
  (903, 1),
  (2189, 1),
  (144, 1),
  (180, 1),
  (1, 1),
  (1110, 1),
  (121, 1),
  (4, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (1410, 1),
  (529, 1),
  (3989, 1),
  (150, 1),
  (30, 1),
  (169, 1),
  (1073, 1),
  (182, 1),
  (1340, 1),
  (61, 1),
  (3143, 1),
  (75, 1),
  (1110, 1),
  (988, 1),
  (234, 1),
  (573, 1),
  (1393, 1),
  (1778, 1),
  (382, 1)],
 [(1281, 1),
  (4, 1),
  (905, 1),
  (1035, 1),
  (13, 1),
  (1424, 1),
  (1816, 1),
  (24, 1),
  (1693, 1),
  (30, 1),
  (34, 1),
  (244, 1),
  (937, 1),
  (170, 1),
  (2857, 1),
  (1549, 1),
  (1309, 1),
  (945, 1),
  (50, 1),
  (1206, 1),
  (1340, 1),
  (4921, 1),
  (60, 1),
  (62, 1),
  (1343, 1),
  (4416, 1),
  (1345, 1),
  (1348, 1),
  (73, 1),
  (75, 1),
  (78, 1),
  (1999, 1),
  (339, 1),
  (1110, 1),
  (2519, 1),
  (602, 1),
  (226, 1),
  (867, 1),
  (486, 1),
  (4968, 1),
  (4969, 1),
  (234, 1),
  (4971, 1),
  (1778, 1),
  (884, 1),
  (1065, 1),
  (3433, 1),
  (123, 1),
  (4970, 1),
  (2815, 1)],
 [(867, 1),
  (197, 1),
  (1001, 1),
  (299, 1),
  (236, 1),
  (13, 1),
  (1711, 1),
  (147, 1),
  (628, 1),
  (30, 1),
  (1110, 1),
  (345, 1),
  (121, 1),
  (830, 1)],
 [(1, 1),
  (4, 1),
  (2693, 1),
  (972, 1),
  (21, 1),
  (150, 1),
  (4127, 1),
  (294, 1),
  (432, 1),
  (822, 1),
  (187, 1),
  (1110, 1),
  (2621, 1),
  (1863, 1),
  (73, 1),
  (76, 1),
  (214, 1),
  (345, 1),
  (101, 1),
  (1768, 1),
  (1001, 1),
  (4972, 1),
  (4973, 1),
  (3955, 1),
  (2293, 1)],
 [(48, 1),
  (867, 1),
  (4, 1),
  (1, 1),
  (4974, 1),
  (4975, 1),
  (16, 1),
  (113, 1),
  (949, 1),
  (1110, 1),
  (121, 1)],
 [(48, 1),
  (4198, 1),
  (4976, 1),
  (13, 1),
  (80, 1),
  (50, 1),
  (116, 1),
  (126, 1)],
 [(3171, 1),
  (262, 1),
  (42, 1),
  (1452, 1),
  (61, 1),
  (4977, 1),
  (4978, 1),
  (755, 1),
  (4980, 1),
  (759, 1),
  (25, 1),
  (698, 1),
  (4979, 1),
  (2781, 1)],
 [(1, 1),
  (4, 1),
  (106, 1),
  (1421, 1),
  (48, 1),
  (114, 1),
  (932, 1),
  (26, 1),
  (3869, 1)],
 [(1922, 1),
  (4, 1),
  (1286, 1),
  (2369, 1),
  (2442, 1),
  (23, 1),
  (13, 1),
  (14, 1),
  (1681, 1),
  (4501, 1),
  (1814, 1),
  (1815, 1),
  (218, 1),
  (1945, 1),
  (4250, 1),
  (26, 1),
  (30, 1),
  (421, 1),
  (2215, 1),
  (173, 1),
  (4657, 1),
  (180, 1),
  (57, 1),
  (1212, 1),
  (573, 1),
  (447, 1),
  (833, 1),
  (207, 1),
  (2005, 1),
  (214, 1),
  (1785, 1),
  (602, 1),
  (482, 1),
  (4981, 1),
  (4982, 1),
  (4983, 1),
  (4984, 1),
  (4985, 1),
  (4986, 1)],
 [(1152, 1),
  (1, 1),
  (2, 1),
  (3, 1),
  (4, 1),
  (903, 1),
  (394, 1),
  (141, 1),
  (277, 1),
  (150, 1),
  (3095, 1),
  (25, 1),
  (1571, 1),
  (165, 1),
  (169, 1),
  (46, 1),
  (176, 1),
  (3762, 1),
  (182, 1),
  (571, 1),
  (1980, 1),
  (709, 1),
  (972, 1),
  (1869, 1),
  (1443, 1),
  (4310, 1),
  (222, 1),
  (379, 1),
  (999, 1),
  (872, 1),
  (110, 1),
  (4082, 1),
  (383, 1),
  (117, 1),
  (4987, 1),
  (4988, 1),
  (4989, 1),
  (4990, 1),
  (4991, 1)],
 [(4992, 1),
  (4993, 1),
  (4994, 1),
  (4995, 1),
  (4996, 1),
  (4997, 1),
  (1030, 1),
  (1, 1),
  (520, 1),
  (2, 1),
  (147, 1),
  (149, 1),
  (672, 1),
  (3747, 1),
  (4998, 1),
  (302, 1),
  (48, 1),
  (136, 1),
  (183, 1),
  (2165, 1),
  (720, 1),
  (468, 1),
  (2393, 1),
  (602, 1),
  (1500, 1),
  (1120, 1),
  (499, 1),
  (757, 1)],
 [(1, 1),
  (2, 1),
  (267, 1),
  (1540, 1),
  (263, 1),
  (73, 1),
  (1444, 1),
  (2284, 1),
  (13, 1),
  (945, 1),
  (754, 1),
  (387, 1),
  (4999, 1),
  (213, 1),
  (182, 1),
  (25, 1),
  (36, 1),
  (1435, 1),
  (61, 1),
  (4, 1),
  (725, 1)],
 [(1, 1),
  (2179, 1),
  (54, 1),
  (4902, 1),
  (5000, 1),
  (5001, 1),
  (80, 1),
  (16, 1),
  (116, 1),
  (150, 1),
  (123, 1),
  (1598, 1)],
 [(128, 1),
  (2306, 1),
  (5003, 1),
  (1604, 1),
  (5, 1),
  (103, 1),
  (1348, 1),
  (5002, 1),
  (295, 1),
  (2828, 1),
  (13, 1),
  (14, 1),
  (718, 1),
  (24, 1),
  (4, 1)],
 [(128, 1),
  (257, 1),
  (2, 1),
  (2179, 1),
  (4, 1),
  (1, 1),
  (5002, 1),
  (2315, 1),
  (5004, 1),
  (5005, 1),
  (5006, 1),
  (5007, 1),
  (5008, 1),
  (5009, 1),
  (5010, 1),
  (5011, 1),
  (1940, 1),
  (5013, 1),
  (5014, 1),
  (2137, 1),
  (24, 1),
  (900, 1),
  (3868, 1),
  (4893, 1),
  (1567, 1),
  (2208, 1),
  (48, 1),
  (1830, 1),
  (295, 1),
  (2984, 1),
  (2473, 1),
  (1962, 1),
  (1324, 1),
  (173, 1),
  (2990, 1),
  (432, 1),
  (182, 1),
  (55, 1),
  (4666, 1),
  (1119, 1),
  (61, 1),
  (2879, 1),
  (267, 1),
  (1354, 1),
  (333, 1),
  (5015, 1),
  (80, 1),
  (3282, 1),
  (5017, 1),
  (2644, 1),
  (14, 1),
  (121, 1),
  (89, 1),
  (218, 1),
  (477, 1),
  (3498, 1),
  (114, 1),
  (4968, 1),
  (146, 1),
  (1410, 1),
  (1133, 1),
  (497, 1),
  (5016, 1),
  (787, 1),
  (2165, 1),
  (1784, 1),
  (5012, 1),
  (762, 1),
  (1149, 1)],
 [(1, 1),
  (2, 1),
  (601, 1),
  (2313, 1),
  (394, 1),
  (267, 1),
  (2574, 1),
  (18, 1),
  (2326, 1),
  (23, 1),
  (5018, 1),
  (239, 1),
  (5020, 1),
  (5021, 1),
  (5022, 1),
  (5023, 1),
  (5019, 1),
  (298, 1),
  (2990, 1),
  (48, 1),
  (50, 1),
  (182, 1),
  (443, 1),
  (2365, 1),
  (1089, 1),
  (2502, 1),
  (968, 1),
  (2124, 1),
  (207, 1),
  (1364, 1),
  (599, 1),
  (345, 1),
  (999, 1),
  (317, 1),
  (2928, 1),
  (497, 1),
  (626, 1),
  (244, 1),
  (119, 1),
  (573, 1),
  (764, 1)],
 [(4, 1),
  (1158, 1),
  (263, 1),
  (267, 1),
  (12, 1),
  (2703, 1),
  (18, 1),
  (1300, 1),
  (277, 1),
  (1174, 1),
  (25, 1),
  (1306, 1),
  (1822, 1),
  (5024, 1),
  (5025, 1),
  (5026, 1),
  (5027, 1),
  (5028, 1),
  (5029, 1),
  (295, 1),
  (296, 1),
  (3754, 1),
  (176, 1),
  (48, 1),
  (49, 1),
  (50, 1),
  (4022, 1),
  (183, 1),
  (187, 1),
  (446, 1),
  (709, 1),
  (4385, 1),
  (73, 1),
  (2383, 1),
  (1107, 1),
  (2644, 1),
  (4565, 1),
  (342, 1),
  (218, 1),
  (610, 1),
  (618, 1),
  (1133, 1),
  (114, 1),
  (755, 1),
  (1399, 1),
  (3796, 1),
  (1659, 1),
  (106, 1),
  (126, 1)],
 [(1, 1),
  (2, 1),
  (899, 1),
  (5036, 1),
  (5002, 1),
  (267, 1),
  (2179, 1),
  (1940, 1),
  (150, 1),
  (5030, 1),
  (5031, 1),
  (5032, 1),
  (5033, 1),
  (5034, 1),
  (5035, 1),
  (1068, 1),
  (1339, 1),
  (1163, 1),
  (759, 1),
  (295, 1),
  (1391, 1),
  (114, 1),
  (1399, 1),
  (121, 1),
  (1659, 1),
  (764, 1)],
 [(1, 1),
  (4, 1),
  (262, 1),
  (5002, 1),
  (398, 1),
  (5037, 1),
  (295, 1),
  (552, 1),
  (557, 1),
  (5038, 1),
  (5039, 1),
  (1586, 1),
  (447, 1),
  (4672, 1),
  (1483, 1),
  (80, 1),
  (1105, 1),
  (470, 1),
  (3692, 1),
  (370, 1),
  (1275, 1),
  (764, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (773, 1),
  (4490, 1),
  (267, 1),
  (13, 1),
  (26, 1),
  (30, 1),
  (48, 1),
  (2730, 1),
  (5040, 1),
  (4790, 1),
  (1339, 1),
  (10, 1),
  (63, 1),
  (1348, 1),
  (182, 1),
  (1097, 1),
  (330, 1),
  (207, 1),
  (976, 1),
  (2772, 1),
  (103, 1),
  (42, 1)],
 [(1, 1), (3083, 1), (263, 1)],
 [(2, 1),
  (2572, 1),
  (13, 1),
  (16, 1),
  (4631, 1),
  (29, 1),
  (1578, 1),
  (2312, 1),
  (1076, 1),
  (55, 1),
  (62, 1),
  (3143, 1),
  (73, 1),
  (80, 1),
  (4692, 1),
  (88, 1),
  (2651, 1),
  (96, 1),
  (2664, 1),
  (114, 1),
  (116, 1),
  (446, 1),
  (4216, 1),
  (122, 1),
  (125, 1),
  (126, 1),
  (128, 1),
  (137, 1),
  (2722, 1),
  (3747, 1),
  (169, 1),
  (1199, 1),
  (185, 1),
  (187, 1),
  (4284, 1),
  (3780, 1),
  (197, 1),
  (1736, 1),
  (715, 1),
  (719, 1),
  (725, 1),
  (3799, 1),
  (240, 1),
  (244, 1),
  (762, 1),
  (764, 1),
  (2818, 1),
  (264, 1),
  (267, 1),
  (283, 1),
  (295, 1),
  (314, 1),
  (1339, 1),
  (317, 1),
  (321, 1),
  (328, 1),
  (1866, 1),
  (335, 1),
  (345, 1),
  (1338, 1),
  (2398, 1),
  (2405, 1),
  (2924, 1),
  (370, 1),
  (1907, 1),
  (2934, 1),
  (5002, 1),
  (5008, 1),
  (1940, 1),
  (2972, 1),
  (2460, 1),
  (2990, 1),
  (5041, 1),
  (5042, 1),
  (5043, 1),
  (5044, 1),
  (5045, 1),
  (5046, 1),
  (5047, 1),
  (5048, 1),
  (5049, 1),
  (5050, 1),
  (5051, 1),
  (5052, 1),
  (5053, 1),
  (5054, 1),
  (482, 1),
  (486, 1),
  (1001, 1),
  (499, 1)],
 [(128, 1),
  (1, 1),
  (4, 1),
  (5, 1),
  (267, 1),
  (12, 1),
  (3085, 1),
  (787, 1),
  (23, 1),
  (25, 1),
  (30, 1),
  (35, 1),
  (550, 1),
  (1704, 1),
  (1152, 1),
  (302, 1),
  (949, 1),
  (822, 1),
  (183, 1),
  (2365, 1),
  (5055, 1),
  (5056, 1),
  (182, 1),
  (205, 1),
  (720, 1),
  (3303, 1),
  (873, 1),
  (4216, 1),
  (3193, 1),
  (831, 1),
  (1276, 1)],
 [(1, 1),
  (4, 1),
  (150, 1),
  (486, 1),
  (1704, 1),
  (298, 1),
  (3339, 1),
  (2990, 1),
  (80, 1),
  (370, 1),
  (499, 1),
  (182, 1),
  (699, 1)],
 [(1249, 1),
  (322, 1),
  (3, 1),
  (4, 1),
  (581, 1),
  (1, 1),
  (267, 1),
  (173, 1),
  (1106, 1),
  (4692, 1),
  (30, 1),
  (55, 1),
  (114, 1),
  (1982, 1)],
 [(1287, 1),
  (1, 1),
  (2, 1),
  (939, 1),
  (4, 1),
  (449, 1),
  (4489, 1),
  (151, 1),
  (2957, 1),
  (173, 1),
  (529, 1),
  (274, 1),
  (2067, 1),
  (968, 1),
  (150, 1),
  (23, 1),
  (1348, 1),
  (1455, 1),
  (5060, 1),
  (5040, 1),
  (1061, 1),
  (3367, 1),
  (5063, 1),
  (50, 1),
  (2990, 1),
  (1199, 1),
  (48, 1),
  (5064, 1),
  (562, 1),
  (3635, 1),
  (5045, 1),
  (182, 1),
  (55, 1),
  (473, 1),
  (60, 1),
  (4157, 1),
  (5057, 1),
  (5058, 1),
  (5059, 1),
  (3780, 1),
  (5061, 1),
  (5062, 1),
  (3143, 1),
  (15, 1),
  (5065, 1),
  (5066, 1),
  (3511, 1),
  (13, 1),
  (720, 1),
  (248, 1),
  (470, 1),
  (249, 1),
  (4185, 1),
  (207, 1),
  (605, 1),
  (1586, 1),
  (2402, 1),
  (2404, 1),
  (813, 1),
  (1638, 1),
  (2153, 1),
  (1898, 1),
  (2284, 1),
  (1474, 1),
  (1906, 1),
  (499, 1),
  (1399, 1),
  (4216, 1),
  (121, 1),
  (3161, 1),
  (106, 1),
  (975, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (2402, 1),
  (5, 1),
  (262, 1),
  (1803, 1),
  (13, 1),
  (194, 1),
  (14, 1),
  (1681, 1),
  (787, 1),
  (1941, 1),
  (23, 1),
  (24, 1),
  (2332, 1),
  (2973, 1),
  (926, 1),
  (1567, 1),
  (1825, 1),
  (197, 1),
  (3078, 1),
  (48, 1),
  (5034, 1),
  (1197, 1),
  (2990, 1),
  (1309, 1),
  (176, 1),
  (1201, 1),
  (307, 1),
  (5044, 1),
  (949, 1),
  (55, 1),
  (187, 1),
  (317, 1),
  (1345, 1),
  (3010, 1),
  (267, 1),
  (2885, 1),
  (328, 1),
  (1136, 1),
  (5067, 1),
  (5068, 1),
  (5069, 1),
  (718, 1),
  (5071, 1),
  (5072, 1),
  (5073, 1),
  (5074, 1),
  (5075, 1),
  (5076, 1),
  (5070, 1),
  (5078, 1),
  (5079, 1),
  (3416, 1),
  (5081, 1),
  (975, 1),
  (1401, 1),
  (1119, 1),
  (246, 1),
  (738, 1),
  (114, 1),
  (998, 1),
  (1617, 1),
  (4841, 1),
  (3672, 1),
  (1106, 1),
  (5080, 1),
  (240, 1),
  (2801, 1),
  (1906, 1),
  (499, 1),
  (244, 1),
  (118, 1),
  (759, 1),
  (1364, 1),
  (1788, 1),
  (5077, 1)],
 [(1536, 1),
  (3712, 1),
  (2, 1),
  (4, 1),
  (150, 1),
  (520, 1),
  (1288, 1),
  (4716, 1),
  (5002, 1),
  (267, 1),
  (13, 1),
  (776, 1),
  (15, 1),
  (529, 1),
  (3858, 1),
  (787, 1),
  (149, 1),
  (1032, 1),
  (2967, 1),
  (2584, 1),
  (2332, 1),
  (30, 1),
  (146, 1),
  (295, 1),
  (553, 1),
  (1152, 1),
  (1708, 1),
  (2990, 1),
  (2993, 1),
  (435, 1),
  (182, 1),
  (55, 1),
  (104, 1),
  (186, 1),
  (5087, 1),
  (330, 1),
  (5056, 1),
  (1760, 1),
  (323, 1),
  (3804, 1),
  (198, 1),
  (3143, 1),
  (328, 1),
  (1354, 1),
  (183, 1),
  (5068, 1),
  (718, 1),
  (975, 1),
  (5072, 1),
  (3922, 1),
  (5076, 1),
  (14, 1),
  (342, 1),
  (46, 1),
  (1497, 1),
  (5082, 1),
  (5083, 1),
  (5084, 1),
  (5085, 1),
  (5086, 1),
  (1119, 1),
  (5088, 1),
  (5089, 1),
  (5090, 1),
  (5091, 1),
  (5092, 1),
  (5093, 1),
  (5094, 1),
  (2575, 1),
  (3561, 1),
  (106, 1),
  (4971, 1),
  (4332, 1),
  (850, 1),
  (622, 1),
  (1391, 1),
  (4692, 1),
  (1768, 1),
  (4939, 1),
  (1397, 1),
  (169, 1),
  (121, 1),
  (123, 1),
  (1149, 1),
  (1905, 1)],
 [(128, 1),
  (1, 1),
  (34, 1),
  (48, 1),
  (230, 1),
  (5095, 1),
  (1193, 1),
  (114, 1),
  (1312, 1),
  (2192, 1),
  (306, 1),
  (979, 1),
  (884, 1),
  (2485, 1),
  (3224, 1),
  (26, 1),
  (1083, 1),
  (1011, 1),
  (510, 1),
  (2239, 1)],
 [(1, 1),
  (2, 1),
  (900, 1),
  (1669, 1),
  (769, 1),
  (21, 1),
  (23, 1),
  (30, 1),
  (801, 1),
  (34, 1),
  (293, 1),
  (42, 1),
  (2477, 1),
  (50, 1),
  (699, 1),
  (61, 1),
  (73, 1),
  (1106, 1),
  (2402, 1),
  (101, 1),
  (5096, 1),
  (5097, 1),
  (5098, 1),
  (491, 1),
  (239, 1),
  (240, 1)],
 [(1, 1),
  (3, 1),
  (4, 1),
  (1162, 1),
  (4890, 1),
  (5104, 1),
  (293, 1),
  (3250, 1),
  (1594, 1),
  (61, 1),
  (1089, 1),
  (73, 1),
  (330, 1),
  (720, 1),
  (84, 1),
  (3168, 1),
  (5095, 1),
  (5099, 1),
  (5100, 1),
  (5101, 1),
  (5102, 1),
  (5103, 1),
  (4080, 1),
  (244, 1),
  (123, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (7, 1),
  (72, 1),
  (42, 1),
  (80, 1),
  (5105, 1),
  (5106, 1),
  (5107, 1),
  (309, 1),
  (24, 1),
  (379, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (1286, 1),
  (7, 1),
  (770, 1),
  (150, 1),
  (151, 1),
  (26, 1),
  (3486, 1),
  (262, 1),
  (169, 1),
  (562, 1),
  (48, 1),
  (50, 1),
  (309, 1),
  (1212, 1),
  (4670, 1),
  (821, 1),
  (1101, 1),
  (465, 1),
  (214, 1),
  (94, 1),
  (487, 1),
  (106, 1),
  (626, 1),
  (5108, 1),
  (5109, 1)],
 [(1, 1),
  (2139, 1),
  (5095, 1),
  (461, 1),
  (317, 1),
  (24, 1),
  (762, 1),
  (123, 1),
  (26, 1),
  (30, 1),
  (1503, 1)],
 [(1, 1),
  (2, 1),
  (2307, 1),
  (4, 1),
  (3717, 1),
  (264, 1),
  (2315, 1),
  (24, 1),
  (293, 1),
  (2090, 1),
  (307, 1),
  (182, 1),
  (3897, 1),
  (343, 1),
  (2502, 1),
  (73, 1),
  (4567, 1),
  (1508, 1),
  (1127, 1),
  (1011, 1),
  (5110, 1),
  (5111, 1),
  (123, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (773, 1),
  (134, 1),
  (2311, 1),
  (140, 1),
  (14, 1),
  (5115, 1),
  (529, 1),
  (3858, 1),
  (147, 1),
  (25, 1),
  (461, 1),
  (283, 1),
  (156, 1),
  (169, 1),
  (3259, 1),
  (317, 1),
  (446, 1),
  (77, 1),
  (591, 1),
  (3537, 1),
  (340, 1),
  (1503, 1),
  (867, 1),
  (616, 1),
  (365, 1),
  (2036, 1),
  (5112, 1),
  (5113, 1),
  (5114, 1),
  (123, 1),
  (5116, 1),
  (767, 1)],
 [(1312, 1),
  (1, 1),
  (2, 1),
  (867, 1),
  (4, 1),
  (293, 1),
  (455, 1),
  (5095, 1),
  (2377, 1),
  (170, 1),
  (3143, 1),
  (13, 1),
  (114, 1),
  (1011, 1),
  (1780, 1),
  (2870, 1),
  (24, 1),
  (3812, 1),
  (26, 1),
  (30, 1),
  (389, 1)],
 [(128, 1),
  (34, 1),
  (867, 1),
  (4, 1),
  (264, 1),
  (2, 1),
  (435, 1),
  (110, 1),
  (239, 1),
  (1810, 1),
  (1011, 1),
  (4212, 1),
  (149, 1),
  (55, 1),
  (1780, 1),
  (1119, 1),
  (21, 1),
  (5117, 1),
  (1535, 1)],
 [(5120, 1),
  (1, 1),
  (1282, 1),
  (4, 1),
  (2437, 1),
  (262, 1),
  (5121, 1),
  (13, 1),
  (2707, 1),
  (24, 1),
  (26, 1),
  (30, 1),
  (3013, 1),
  (36, 1),
  (165, 1),
  (370, 1),
  (180, 1),
  (182, 1),
  (698, 1),
  (61, 1),
  (2238, 1),
  (709, 1),
  (330, 1),
  (98, 1),
  (397, 1),
  (722, 1),
  (293, 1),
  (2146, 1),
  (230, 1),
  (487, 1),
  (616, 1),
  (5095, 1),
  (1206, 1),
  (2165, 1),
  (1142, 1),
  (127, 1),
  (4093, 1),
  (5118, 1),
  (5119, 1)],
 [(3681, 1), (5122, 1), (4, 1), (517, 1), (169, 1), (522, 1), (149, 1)],
 [(128, 1),
  (2, 1),
  (3143, 1),
  (170, 1),
  (39, 1),
  (146, 1),
  (147, 1),
  (1780, 1),
  (117, 1),
  (150, 1),
  (2004, 1),
  (61, 1)],
 [(1410, 1),
  (4, 1),
  (13, 1),
  (272, 1),
  (150, 1),
  (23, 1),
  (410, 1),
  (672, 1),
  (33, 1),
  (170, 1),
  (3143, 1),
  (45, 1),
  (1455, 1),
  (50, 1),
  (2364, 1),
  (3398, 1),
  (583, 1),
  (2899, 1),
  (4829, 1),
  (2271, 1),
  (2555, 1),
  (999, 1),
  (1653, 1),
  (4091, 1)],
 [(96, 1),
  (1, 1),
  (388, 1),
  (3809, 1),
  (73, 1),
  (170, 1),
  (50, 1),
  (720, 1),
  (114, 1),
  (435, 1),
  (117, 1),
  (791, 1),
  (443, 1)],
 [(4, 1), (616, 1), (2707, 1), (187, 1), (60, 1), (127, 1)],
 [(1, 1),
  (5123, 1),
  (2502, 1),
  (4520, 1),
  (13, 1),
  (1648, 1),
  (808, 1),
  (2899, 1),
  (23, 1),
  (120, 1),
  (1017, 1),
  (94, 1)],
 [(144, 1), (1, 1), (21, 1), (3798, 1), (4713, 1)],
 [(5124, 1),
  (5125, 1),
  (5126, 1),
  (13, 1),
  (1044, 1),
  (149, 1),
  (23, 1),
  (153, 1),
  (1952, 1),
  (33, 1),
  (34, 1),
  (37, 1),
  (937, 1),
  (48, 1),
  (60, 1),
  (72, 1),
  (73, 1),
  (602, 1),
  (99, 1),
  (487, 1),
  (114, 1),
  (244, 1),
  (4, 1)],
 [(4, 1), (41, 1), (14, 1), (690, 1), (1193, 1), (762, 1), (60, 1)],
 [(1, 1),
  (3, 1),
  (3143, 1),
  (140, 1),
  (203, 1),
  (204, 1),
  (77, 1),
  (16, 1),
  (1011, 1),
  (116, 1),
  (222, 1),
  (1964, 1),
  (5127, 1),
  (1017, 1),
  (538, 1),
  (414, 1),
  (127, 1)],
 [(1, 1),
  (1571, 1),
  (517, 1),
  (422, 1),
  (1127, 1),
  (73, 1),
  (30, 1),
  (107, 1),
  (173, 1),
  (46, 1),
  (50, 1),
  (4163, 1),
  (180, 1),
  (942, 1),
  (918, 1),
  (3640, 1),
  (254, 1),
  (1045, 1)],
 [(1, 1), (5128, 1), (73, 1), (1132, 1), (120, 1), (888, 1), (1085, 1)],
 [(1, 1),
  (1410, 1),
  (5129, 1),
  (5130, 1),
  (151, 1),
  (2, 1),
  (15, 1),
  (144, 1),
  (2707, 1),
  (149, 1),
  (23, 1),
  (28, 1),
  (30, 1),
  (37, 1),
  (4520, 1),
  (169, 1),
  (1033, 1),
  (182, 1),
  (439, 1),
  (60, 1),
  (1857, 1),
  (1869, 1),
  (207, 1),
  (41, 1),
  (602, 1),
  (482, 1),
  (232, 1),
  (1704, 1),
  (631, 1),
  (123, 1)],
 [(1, 1),
  (4, 1),
  (453, 1),
  (1446, 1),
  (3143, 1),
  (5132, 1),
  (5131, 1),
  (1964, 1),
  (5133, 1),
  (143, 1),
  (1033, 1),
  (2165, 1),
  (121, 1),
  (25, 1),
  (239, 1),
  (62, 1)],
 [(1, 1),
  (774, 1),
  (616, 1),
  (73, 1),
  (5134, 1),
  (5135, 1),
  (48, 1),
  (307, 1),
  (937, 1),
  (1497, 1),
  (383, 1)],
 [(1, 1),
  (48, 1),
  (264, 1),
  (10, 1),
  (4954, 1),
  (77, 1),
  (321, 1),
  (13, 1),
  (5136, 1),
  (808, 1),
  (1973, 1),
  (439, 1),
  (282, 1),
  (125, 1),
  (479, 1)],
 [(1, 1),
  (1410, 1),
  (1033, 1),
  (394, 1),
  (144, 1),
  (5137, 1),
  (2707, 1),
  (149, 1),
  (34, 1),
  (37, 1),
  (1193, 1),
  (48, 1),
  (54, 1),
  (62, 1),
  (73, 1),
  (674, 1),
  (974, 1),
  (1367, 1),
  (602, 1),
  (3809, 1),
  (117, 1),
  (169, 1)],
 [(2368, 1),
  (4, 1),
  (170, 1),
  (3057, 1),
  (5138, 1),
  (180, 1),
  (248, 1),
  (187, 1),
  (1021, 1)],
 [(128, 1),
  (1, 1),
  (483, 1),
  (230, 1),
  (114, 1),
  (48, 1),
  (178, 1),
  (149, 1),
  (23, 1),
  (408, 1),
  (121, 1)],
 [(1, 1),
  (4, 1),
  (903, 1),
  (1033, 1),
  (15, 1),
  (5137, 1),
  (5139, 1),
  (5140, 1),
  (151, 1),
  (280, 1),
  (30, 1),
  (34, 1),
  (3364, 1),
  (1193, 1),
  (173, 1),
  (48, 1),
  (439, 1),
  (1987, 1),
  (461, 1),
  (974, 1),
  (333, 1),
  (214, 1),
  (106, 1),
  (117, 1),
  (41, 1),
  (4091, 1)],
 [(4809, 1), (13, 1), (4, 1), (117, 1), (121, 1)],
 [(1920, 1),
  (1, 1),
  (1410, 1),
  (4, 1),
  (3590, 1),
  (435, 1),
  (14, 1),
  (784, 1),
  (529, 1),
  (5141, 1),
  (26, 1),
  (29, 1),
  (33, 1),
  (34, 1),
  (173, 1),
  (48, 1),
  (50, 1),
  (4275, 1),
  (2356, 1),
  (949, 1),
  (182, 1),
  (188, 1),
  (1599, 1),
  (4419, 1),
  (3143, 1),
  (4354, 1),
  (602, 1),
  (1116, 1),
  (2014, 1),
  (101, 1),
  (870, 1),
  (616, 1),
  (106, 1),
  (1643, 1),
  (364, 1),
  (117, 1),
  (3578, 1),
  (127, 1)],
 [(1, 1),
  (770, 1),
  (771, 1),
  (4, 1),
  (13, 1),
  (14, 1),
  (2703, 1),
  (16, 1),
  (5142, 1),
  (23, 1),
  (2203, 1),
  (30, 1),
  (33, 1),
  (34, 1),
  (294, 1),
  (169, 1),
  (307, 1),
  (1338, 1),
  (4544, 1),
  (968, 1),
  (1994, 1),
  (342, 1),
  (602, 1),
  (3706, 1),
  (123, 1)],
 [(96, 1),
  (896, 1),
  (578, 1),
  (33, 1),
  (3271, 1),
  (1193, 1),
  (128, 1),
  (4939, 1),
  (876, 1),
  (147, 1),
  (436, 1),
  (5143, 1),
  (218, 1),
  (1788, 1),
  (2554, 1)],
 [(128, 1),
  (1, 1),
  (1032, 1),
  (73, 1),
  (939, 1),
  (1120, 1),
  (461, 1),
  (1869, 1),
  (1560, 1),
  (690, 1),
  (2707, 1),
  (150, 1),
  (1273, 1),
  (5144, 1),
  (25, 1),
  (3858, 1),
  (1199, 1),
  (4670, 1)],
 [(128, 1),
  (2, 1),
  (3, 1),
  (4, 1),
  (1926, 1),
  (268, 1),
  (269, 1),
  (77, 1),
  (143, 1),
  (918, 1),
  (24, 1),
  (5145, 1),
  (5146, 1),
  (5147, 1),
  (5148, 1),
  (5149, 1),
  (5150, 1),
  (422, 1),
  (173, 1),
  (50, 1),
  (3251, 1),
  (949, 1),
  (182, 1),
  (183, 1),
  (372, 1),
  (60, 1),
  (61, 1),
  (446, 1),
  (709, 1),
  (62, 1),
  (1634, 1),
  (13, 1),
  (341, 1),
  (94, 1),
  (1119, 1),
  (610, 1),
  (101, 1),
  (872, 1),
  (747, 1),
  (1132, 1),
  (621, 1),
  (616, 1),
  (115, 1),
  (1524, 1),
  (117, 1),
  (1144, 1),
  (123, 1),
  (1407, 1)],
 [(149, 1),
  (4, 1),
  (455, 1),
  (13, 1),
  (48, 1),
  (627, 1),
  (180, 1),
  (21, 1),
  (5151, 1),
  (447, 1)],
 [(5152, 1),
  (1345, 1),
  (1995, 1),
  (1637, 1),
  (263, 1),
  (1193, 1),
  (1633, 1),
  (935, 1),
  (1452, 1),
  (48, 1),
  (309, 1),
  (439, 1),
  (121, 1),
  (30, 1),
  (149, 1)],
 [(5153, 1), (5154, 1), (4, 1), (1, 1), (770, 1), (16, 1), (178, 1), (23, 1)],
 [(1, 1),
  (5155, 1),
  (101, 1),
  (1286, 1),
  (974, 1),
  (30, 1),
  (910, 1),
  (497, 1),
  (147, 1),
  (14, 1),
  (918, 1),
  (762, 1),
  (446, 1)],
 [(128, 1),
  (1, 1),
  (1410, 1),
  (4, 1),
  (1032, 1),
  (521, 1),
  (780, 1),
  (13, 1),
  (479, 1),
  (144, 1),
  (529, 1),
  (147, 1),
  (149, 1),
  (1814, 1),
  (24, 1),
  (921, 1),
  (900, 1),
  (29, 1),
  (30, 1),
  (3231, 1),
  (2608, 1),
  (675, 1),
  (5156, 1),
  (165, 1),
  (5158, 1),
  (807, 1),
  (5160, 1),
  (1193, 1),
  (5162, 1),
  (5163, 1),
  (173, 1),
  (1198, 1),
  (48, 1),
  (50, 1),
  (180, 1),
  (565, 1),
  (54, 1),
  (439, 1),
  (88, 1),
  (187, 1),
  (60, 1),
  (573, 1),
  (2, 1),
  (1219, 1),
  (4292, 1),
  (182, 1),
  (1222, 1),
  (3143, 1),
  (73, 1),
  (330, 1),
  (971, 1),
  (461, 1),
  (3151, 1),
  (2512, 1),
  (3704, 1),
  (4855, 1),
  (2520, 1),
  (601, 1),
  (719, 1),
  (93, 1),
  (5157, 1),
  (96, 1),
  (4440, 1),
  (1154, 1),
  (2024, 1),
  (1641, 1),
  (5159, 1),
  (414, 1),
  (754, 1),
  (117, 1),
  (5161, 1),
  (120, 1),
  (121, 1),
  (33, 1),
  (3710, 1),
  (21, 1)],
 [(1152, 1),
  (2, 1),
  (1443, 1),
  (3940, 1),
  (5164, 1),
  (1410, 1),
  (144, 1),
  (149, 1),
  (151, 1),
  (25, 1),
  (30, 1)],
 [(1, 1),
  (2, 1),
  (2440, 1),
  (14, 1),
  (45, 1),
  (5166, 1),
  (30, 1),
  (33, 1),
  (34, 1),
  (37, 1),
  (808, 1),
  (1193, 1),
  (5165, 1),
  (2350, 1),
  (5167, 1),
  (48, 1),
  (439, 1),
  (60, 1),
  (73, 1),
  (601, 1),
  (1509, 1),
  (749, 1),
  (4091, 1)],
 [(1, 1), (1637, 1), (2377, 1), (5168, 1), (5169, 1), (23, 1), (447, 1)],
 [(1, 1),
  (2, 1),
  (831, 1),
  (1409, 1),
  (520, 1),
  (307, 1),
  (268, 1),
  (14, 1),
  (1810, 1),
  (150, 1),
  (151, 1),
  (2713, 1),
  (30, 1),
  (170, 1),
  (302, 1),
  (1032, 1),
  (5170, 1),
  (5171, 1),
  (5172, 1),
  (5173, 1),
  (55, 1),
  (565, 1),
  (78, 1),
  (463, 1),
  (94, 1),
  (1503, 1),
  (100, 1),
  (101, 1),
  (103, 1),
  (104, 1),
  (3437, 1),
  (114, 1),
  (118, 1),
  (887, 1),
  (762, 1),
  (379, 1),
  (1788, 1),
  (3839, 1)],
 [(128, 1),
  (0, 1),
  (2051, 1),
  (4, 1),
  (1281, 1),
  (13, 1),
  (918, 1),
  (286, 1),
  (1, 1),
  (2725, 1),
  (5034, 1),
  (173, 1),
  (48, 1),
  (30, 1),
  (5174, 1),
  (55, 1),
  (5176, 1),
  (5177, 1),
  (698, 1),
  (699, 1),
  (73, 1),
  (5175, 1),
  (78, 1),
  (5178, 1),
  (1120, 1),
  (99, 1),
  (228, 1),
  (1902, 1),
  (114, 1),
  (1399, 1),
  (3069, 1),
  (127, 1)],
 [(1472, 1),
  (1, 1),
  (323, 1),
  (4, 1),
  (645, 1),
  (465, 1),
  (616, 1),
  (10, 1),
  (491, 1),
  (1101, 1),
  (14, 1),
  (1312, 1),
  (271, 1),
  (4552, 1),
  (114, 1),
  (77, 1),
  (270, 1),
  (183, 1),
  (762, 1),
  (5179, 1),
  (5180, 1)],
 [(1, 1),
  (48, 1),
  (5170, 1),
  (558, 1),
  (720, 1),
  (50, 1),
  (62, 1),
  (55, 1),
  (24, 1),
  (30, 1)],
 [(128, 1),
  (2944, 1),
  (899, 1),
  (4, 1),
  (3462, 1),
  (12, 1),
  (13, 1),
  (910, 1),
  (2072, 1),
  (3859, 1),
  (24, 1),
  (25, 1),
  (1266, 1),
  (175, 1),
  (176, 1),
  (946, 1),
  (243, 1),
  (446, 1),
  (182, 1),
  (439, 1),
  (440, 1),
  (3897, 1),
  (58, 1),
  (60, 1),
  (5181, 1),
  (5182, 1),
  (5183, 1),
  (71, 1),
  (3018, 1),
  (459, 1),
  (403, 1),
  (205, 1),
  (4311, 1),
  (698, 1),
  (4193, 1),
  (763, 1),
  (3300, 1),
  (869, 1),
  (529, 1),
  (872, 1),
  (618, 1),
  (2802, 1),
  (1395, 1),
  (116, 1),
  (885, 1),
  (631, 1),
  (4218, 1),
  (123, 1)],
 [(128, 1),
  (443, 1),
  (1510, 1),
  (12, 1),
  (28, 1),
  (1483, 1),
  (140, 1),
  (110, 1),
  (124, 1),
  (1011, 1),
  (151, 1),
  (571, 1),
  (764, 1),
  (383, 1)],
 [(1, 1),
  (4, 1),
  (780, 1),
  (16, 1),
  (150, 1),
  (3224, 1),
  (3483, 1),
  (38, 1),
  (170, 1),
  (562, 1),
  (50, 1),
  (55, 1),
  (184, 1),
  (446, 1),
  (5184, 1),
  (5185, 1),
  (5186, 1),
  (77, 1),
  (84, 1),
  (4713, 1),
  (5100, 1),
  (1395, 1),
  (1016, 1),
  (123, 1)],
 [(2, 1),
  (5187, 1),
  (5188, 1),
  (773, 1),
  (1364, 1),
  (910, 1),
  (79, 1),
  (114, 1),
  (2691, 1),
  (180, 1),
  (117, 1),
  (55, 1),
  (1433, 1),
  (2004, 1),
  (61, 1),
  (4, 1)],
 [(1, 1),
  (1995, 1),
  (80, 1),
  (3890, 1),
  (20, 1),
  (214, 1),
  (55, 1),
  (249, 1),
  (187, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (114, 1),
  (529, 1),
  (2866, 1),
  (628, 1),
  (55, 1),
  (1752, 1)],
 [(0, 1),
  (1, 1),
  (771, 1),
  (4022, 1),
  (5190, 1),
  (5191, 1),
  (5192, 1),
  (128, 1),
  (55, 1),
  (4678, 1),
  (78, 1),
  (788, 1),
  (150, 1),
  (791, 1),
  (345, 1),
  (477, 1),
  (5189, 1)],
 [(1, 1), (5193, 1), (55, 1), (173, 1), (789, 1), (151, 1), (3487, 1)],
 [(1, 1), (771, 1), (198, 1), (114, 1), (342, 1), (55, 1), (61, 1)],
 [(512, 1),
  (1, 1),
  (2, 1),
  (4, 1),
  (903, 1),
  (2313, 1),
  (12, 1),
  (13, 1),
  (5136, 1),
  (661, 1),
  (73, 1),
  (153, 1),
  (1050, 1),
  (2460, 1),
  (29, 1),
  (329, 1),
  (1312, 1),
  (176, 1),
  (932, 1),
  (680, 1),
  (301, 1),
  (686, 1),
  (3376, 1),
  (50, 1),
  (691, 1),
  (567, 1),
  (3257, 1),
  (187, 1),
  (60, 1),
  (61, 1),
  (62, 1),
  (1344, 1),
  (2627, 1),
  (1351, 1),
  (1737, 1),
  (5194, 1),
  (5195, 1),
  (5196, 1),
  (5197, 1),
  (718, 1),
  (207, 1),
  (5200, 1),
  (5201, 1),
  (5202, 1),
  (83, 1),
  (2317, 1),
  (5198, 1),
  (5199, 1),
  (1530, 1),
  (94, 1),
  (3680, 1),
  (2320, 1),
  (613, 1),
  (999, 1),
  (616, 1),
  (5180, 1),
  (626, 1),
  (5203, 1),
  (1652, 1),
  (574, 1),
  (1015, 1),
  (762, 1),
  (895, 1)],
 [(128, 1),
  (1, 1),
  (1282, 1),
  (4, 1),
  (150, 1),
  (1032, 1),
  (785, 1),
  (403, 1),
  (3606, 1),
  (23, 1),
  (30, 1),
  (169, 1),
  (558, 1),
  (48, 1),
  (136, 1),
  (565, 1),
  (55, 1),
  (60, 1),
  (73, 1),
  (2636, 1),
  (207, 1),
  (5204, 1),
  (3193, 1),
  (93, 1),
  (553, 1),
  (1364, 1)],
 [(1, 1),
  (2, 1),
  (1923, 1),
  (523, 1),
  (13, 1),
  (151, 1),
  (26, 1),
  (1435, 1),
  (932, 1),
  (38, 1),
  (169, 1),
  (42, 1),
  (182, 1),
  (55, 1),
  (187, 1),
  (321, 1),
  (2758, 1),
  (73, 1),
  (330, 1),
  (977, 1),
  (5204, 1),
  (5205, 1),
  (5206, 1),
  (1633, 1),
  (59, 1),
  (616, 1),
  (240, 1),
  (2162, 1),
  (125, 1),
  (127, 1)],
 [(128, 1),
  (1, 1),
  (99, 1),
  (4, 1),
  (37, 1),
  (616, 1),
  (173, 1),
  (13, 1),
  (55, 1),
  (2596, 1),
  (127, 1)],
 [(2816, 1),
  (1648, 1),
  (123, 1),
  (616, 1),
  (55, 1),
  (48, 1),
  (787, 1),
  (1364, 1),
  (5207, 1),
  (184, 1),
  (283, 1)],
 [(4193, 1),
  (1572, 1),
  (910, 1),
  (33, 1),
  (1, 1),
  (1902, 1),
  (2453, 1),
  (55, 1),
  (5208, 1),
  (5209, 1),
  (602, 1),
  (61, 1),
  (30, 1)],
 [(1, 1),
  (2051, 1),
  (4, 1),
  (1797, 1),
  (385, 1),
  (2284, 1),
  (1035, 1),
  (140, 1),
  (269, 1),
  (529, 1),
  (2322, 1),
  (4372, 1),
  (150, 1),
  (3096, 1),
  (2586, 1),
  (1308, 1),
  (30, 1),
  (2565, 1),
  (1371, 1),
  (932, 1),
  (3367, 1),
  (169, 1),
  (5214, 1),
  (173, 1),
  (180, 1),
  (821, 1),
  (54, 1),
  (55, 1),
  (698, 1),
  (61, 1),
  (4288, 1),
  (96, 1),
  (198, 1),
  (73, 1),
  (74, 1),
  (3020, 1),
  (1037, 1),
  (1409, 1),
  (3154, 1),
  (1364, 1),
  (342, 1),
  (280, 1),
  (88, 1),
  (5210, 1),
  (5211, 1),
  (5212, 1),
  (5213, 1),
  (478, 1),
  (1375, 1),
  (480, 1),
  (4193, 1),
  (738, 1),
  (99, 1),
  (996, 1),
  (486, 1),
  (273, 1),
  (5100, 1),
  (1781, 1),
  (3448, 1),
  (2300, 1),
  (126, 1)],
 [(1, 1),
  (2, 1),
  (1027, 1),
  (4, 1),
  (521, 1),
  (12, 1),
  (14, 1),
  (771, 1),
  (927, 1),
  (290, 1),
  (3753, 1),
  (2224, 1),
  (5170, 1),
  (55, 1),
  (244, 1),
  (317, 1),
  (77, 1),
  (99, 1),
  (214, 1),
  (601, 1),
  (2011, 1),
  (92, 1),
  (5215, 1),
  (867, 1),
  (3565, 1),
  (1395, 1),
  (628, 1)],
 [(5216, 1),
  (1, 1),
  (4418, 1),
  (453, 1),
  (38, 1),
  (2855, 1),
  (169, 1),
  (55, 1),
  (3404, 1),
  (13, 1),
  (5217, 1),
  (4269, 1),
  (720, 1),
  (173, 1),
  (82, 1),
  (268, 1),
  (23, 1),
  (24, 1),
  (2477, 1),
  (239, 1)],
 [(2, 1),
  (187, 1),
  (4, 1),
  (37, 1),
  (136, 1),
  (268, 1),
  (4141, 1),
  (718, 1),
  (2440, 1),
  (1011, 1),
  (5204, 1),
  (341, 1),
  (55, 1),
  (440, 1),
  (218, 1),
  (123, 1),
  (1788, 1),
  (61, 1),
  (5218, 1)],
 [(5219, 1),
  (4, 1),
  (487, 1),
  (170, 1),
  (397, 1),
  (3406, 1),
  (173, 1),
  (117, 1),
  (2806, 1),
  (55, 1),
  (122, 1),
  (26, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (2625, 1),
  (9, 1),
  (2709, 1),
  (23, 1),
  (24, 1),
  (25, 1),
  (26, 1),
  (4892, 1),
  (672, 1),
  (2852, 1),
  (169, 1),
  (1578, 1),
  (302, 1),
  (48, 1),
  (50, 1),
  (822, 1),
  (116, 1),
  (187, 1),
  (321, 1),
  (182, 1),
  (968, 1),
  (73, 1),
  (4431, 1),
  (209, 1),
  (4184, 1),
  (2011, 1),
  (5220, 1),
  (5221, 1),
  (234, 1),
  (244, 1),
  (1397, 1),
  (1148, 1),
  (106, 1)],
 [(899, 1),
  (4, 1),
  (645, 1),
  (1287, 1),
  (267, 1),
  (13, 1),
  (2593, 1),
  (114, 1),
  (4149, 1),
  (567, 1),
  (1225, 1),
  (74, 1),
  (88, 1),
  (990, 1),
  (4835, 1),
  (5222, 1),
  (5223, 1),
  (616, 1),
  (5224, 1),
  (1266, 1),
  (119, 1),
  (890, 1),
  (1535, 1)],
 [(0, 1),
  (3, 1),
  (4, 1),
  (1046, 1),
  (2059, 1),
  (140, 1),
  (13, 1),
  (910, 1),
  (15, 1),
  (529, 1),
  (150, 1),
  (3437, 1),
  (30, 1),
  (672, 1),
  (1058, 1),
  (1446, 1),
  (945, 1),
  (3143, 1),
  (754, 1),
  (49, 1),
  (50, 1),
  (180, 1),
  (55, 1),
  (313, 1),
  (1225, 1),
  (330, 1),
  (573, 1),
  (197, 1),
  (71, 1),
  (73, 1),
  (74, 1),
  (78, 1),
  (859, 1),
  (4193, 1),
  (1507, 1),
  (1128, 1),
  (5225, 1),
  (5226, 1),
  (5227, 1),
  (876, 1),
  (365, 1),
  (12, 1),
  (114, 1),
  (4603, 1),
  (3070, 1)],
 [(4, 1),
  (12, 1),
  (1005, 1),
  (2579, 1),
  (1044, 1),
  (150, 1),
  (24, 1),
  (30, 1),
  (4127, 1),
  (3367, 1),
  (169, 1),
  (173, 1),
  (5170, 1),
  (439, 1),
  (5183, 1),
  (140, 1),
  (55, 1),
  (718, 1),
  (464, 1),
  (2519, 1),
  (608, 1),
  (613, 1),
  (486, 1),
  (616, 1),
  (1130, 1),
  (5228, 1),
  (5229, 1),
  (5230, 1),
  (4210, 1),
  (764, 1)],
 [(1, 1),
  (150, 1),
  (1409, 1),
  (151, 1),
  (13, 1),
  (14, 1),
  (1046, 1),
  (23, 1),
  (538, 1),
  (3205, 1),
  (4141, 1),
  (48, 1),
  (55, 1),
  (3262, 1),
  (709, 1),
  (71, 1),
  (330, 1),
  (80, 1),
  (602, 1),
  (3292, 1),
  (222, 1),
  (225, 1),
  (616, 1),
  (1902, 1),
  (5231, 1),
  (5232, 1),
  (1395, 1),
  (123, 1)],
 [(128, 1),
  (4, 1),
  (903, 1),
  (140, 1),
  (146, 1),
  (149, 1),
  (37, 1),
  (550, 1),
  (182, 1),
  (55, 1),
  (71, 1),
  (73, 1),
  (1869, 1),
  (80, 1),
  (1499, 1),
  (95, 1),
  (2149, 1),
  (618, 1),
  (107, 1),
  (1648, 1),
  (5233, 1),
  (499, 1),
  (120, 1),
  (1017, 1),
  (1045, 1)],
 [(416, 1),
  (4193, 1),
  (2, 1),
  (1892, 1),
  (5234, 1),
  (1, 1),
  (616, 1),
  (74, 1),
  (3437, 1),
  (1678, 1),
  (1682, 1),
  (1971, 1),
  (55, 1),
  (5208, 1),
  (26, 1),
  (60, 1)],
 [(128, 1),
  (1, 1),
  (5123, 1),
  (5, 1),
  (1158, 1),
  (1032, 1),
  (396, 1),
  (13, 1),
  (1422, 1),
  (3606, 1),
  (176, 1),
  (5170, 1),
  (565, 1),
  (55, 1),
  (61, 1),
  (72, 1),
  (209, 1),
  (340, 1),
  (1495, 1),
  (483, 1),
  (2796, 1),
  (573, 1),
  (240, 1),
  (5235, 1),
  (5236, 1),
  (5237, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (2702, 1),
  (788, 1),
  (24, 1),
  (42, 1),
  (176, 1),
  (690, 1),
  (54, 1),
  (55, 1),
  (197, 1),
  (71, 1),
  (1107, 1),
  (4822, 1),
  (101, 1),
  (616, 1),
  (752, 1),
  (1906, 1),
  (5238, 1),
  (5239, 1),
  (888, 1),
  (123, 1),
  (170, 1)],
 [(5248, 1),
  (1, 1),
  (5250, 1),
  (2091, 1),
  (5252, 1),
  (5253, 1),
  (5254, 1),
  (5249, 1),
  (4012, 1),
  (5247, 1),
  (13, 1),
  (910, 1),
  (16, 1),
  (529, 1),
  (2066, 1),
  (5251, 1),
  (2453, 1),
  (24, 1),
  (2650, 1),
  (30, 1),
  (416, 1),
  (176, 1),
  (2083, 1),
  (932, 1),
  (37, 1),
  (3367, 1),
  (169, 1),
  (170, 1),
  (4395, 1),
  (172, 1),
  (173, 1),
  (48, 1),
  (180, 1),
  (182, 1),
  (55, 1),
  (312, 1),
  (116, 1),
  (3904, 1),
  (1120, 1),
  (2, 1),
  (1219, 1),
  (1500, 1),
  (197, 1),
  (77, 1),
  (2317, 1),
  (3408, 1),
  (82, 1),
  (99, 1),
  (5204, 1),
  (2702, 1),
  (600, 1),
  (602, 1),
  (2140, 1),
  (608, 1),
  (1633, 1),
  (610, 1),
  (867, 1),
  (2788, 1),
  (2193, 1),
  (144, 1),
  (3437, 1),
  (1902, 1),
  (856, 1),
  (5255, 1),
  (1780, 1),
  (1577, 1),
  (5240, 1),
  (5241, 1),
  (5242, 1),
  (5243, 1),
  (5244, 1),
  (5245, 1),
  (5246, 1),
  (1407, 1)],
 [(2, 1),
  (2948, 1),
  (5256, 1),
  (5257, 1),
  (5258, 1),
  (5259, 1),
  (5260, 1),
  (5261, 1),
  (14, 1),
  (280, 1),
  (792, 1),
  (1309, 1),
  (288, 1),
  (176, 1),
  (182, 1),
  (1083, 1),
  (709, 1),
  (2502, 1),
  (73, 1),
  (1866, 1),
  (721, 1),
  (5262, 1),
  (529, 1),
  (1386, 1),
  (1908, 1),
  (127, 1)],
 [(1058, 1),
  (709, 1),
  (487, 1),
  (876, 1),
  (1895, 1),
  (172, 1),
  (13, 1),
  (14, 1),
  (5263, 1),
  (754, 1),
  (1011, 1),
  (789, 1),
  (4818, 1),
  (2, 1),
  (1083, 1)],
 [(1, 1),
  (2, 1),
  (387, 1),
  (4, 1),
  (1287, 1),
  (267, 1),
  (13, 1),
  (5264, 1),
  (5265, 1),
  (150, 1),
  (23, 1),
  (24, 1),
  (932, 1),
  (326, 1),
  (808, 1),
  (943, 1),
  (182, 1),
  (55, 1),
  (1339, 1),
  (61, 1),
  (62, 1),
  (1599, 1),
  (198, 1),
  (199, 1),
  (73, 1),
  (74, 1),
  (183, 1),
  (77, 1),
  (719, 1),
  (602, 1),
  (2027, 1),
  (573, 1),
  (119, 1),
  (121, 1),
  (635, 1)],
 [(288, 1),
  (2400, 1),
  (2563, 1),
  (5267, 1),
  (2024, 1),
  (169, 1),
  (1354, 1),
  (3019, 1),
  (14, 1),
  (529, 1),
  (5266, 1),
  (1491, 1),
  (4116, 1),
  (789, 1),
  (512, 1),
  (24, 1),
  (1083, 1),
  (1789, 1)],
 [(2, 1),
  (3, 1),
  (4, 1),
  (1032, 1),
  (14, 1),
  (26, 1),
  (2597, 1),
  (550, 1),
  (2090, 1),
  (44, 1),
  (1581, 1),
  (1071, 1),
  (48, 1),
  (565, 1),
  (54, 1),
  (60, 1),
  (2116, 1),
  (1102, 1),
  (81, 1),
  (4182, 1),
  (106, 1),
  (3692, 1),
  (114, 1),
  (117, 1),
  (121, 1),
  (123, 1),
  (128, 1),
  (131, 1),
  (5268, 1),
  (5269, 1),
  (5270, 1),
  (5271, 1),
  (5272, 1),
  (5273, 1),
  (5274, 1),
  (5275, 1),
  (5276, 1),
  (5277, 1),
  (5278, 1),
  (5279, 1),
  (5280, 1),
  (5281, 1),
  (5282, 1),
  (5283, 1),
  (4260, 1),
  (5285, 1),
  (169, 1),
  (173, 1),
  (1199, 1),
  (185, 1),
  (2165, 1),
  (708, 1),
  (709, 1),
  (198, 1),
  (2766, 1),
  (721, 1),
  (1147, 1),
  (231, 1),
  (754, 1),
  (557, 1),
  (273, 1),
  (789, 1),
  (791, 1),
  (288, 1),
  (1324, 1),
  (819, 1),
  (821, 1),
  (313, 1),
  (2365, 1),
  (831, 1),
  (341, 1),
  (1891, 1),
  (3433, 1),
  (899, 1),
  (388, 1),
  (1422, 1),
  (2008, 1),
  (2990, 1),
  (3023, 1),
  (976, 1),
  (3030, 1),
  (3032, 1),
  (5284, 1),
  (479, 1),
  (3044, 1),
  (486, 1),
  (1011, 1)],
 [(2816, 1),
  (131, 1),
  (5, 1),
  (141, 1),
  (14, 1),
  (150, 1),
  (5274, 1),
  (30, 1),
  (288, 1),
  (5281, 1),
  (180, 1),
  (5286, 1),
  (5287, 1),
  (5288, 1),
  (5289, 1),
  (557, 1),
  (176, 1),
  (1076, 1),
  (54, 1),
  (55, 1),
  (185, 1),
  (198, 1),
  (1072, 1),
  (1975, 1),
  (463, 1),
  (721, 1),
  (106, 1),
  (2284, 1),
  (4221, 1),
  (4593, 1),
  (2165, 1),
  (631, 1),
  (183, 1),
  (767, 1)],
 [(1, 1),
  (2, 1),
  (2563, 1),
  (4, 1),
  (4310, 1),
  (1559, 1),
  (13, 1),
  (14, 1),
  (5293, 1),
  (529, 1),
  (146, 1),
  (899, 1),
  (789, 1),
  (23, 1),
  (2203, 1),
  (3483, 1),
  (291, 1),
  (497, 1),
  (169, 1),
  (5290, 1),
  (5291, 1),
  (5292, 1),
  (557, 1),
  (48, 1),
  (182, 1),
  (458, 1),
  (3075, 1),
  (395, 1),
  (709, 1),
  (968, 1),
  (73, 1),
  (330, 1),
  (2766, 1),
  (848, 1),
  (2574, 1),
  (342, 1),
  (601, 1),
  (219, 1),
  (3698, 1),
  (123, 1),
  (103, 1),
  (106, 1),
  (3694, 1),
  (625, 1),
  (114, 1),
  (117, 1),
  (119, 1),
  (121, 1),
  (1147, 1),
  (618, 1),
  (4501, 1)],
 [(4127, 1),
  (2021, 1),
  (2990, 1),
  (999, 1),
  (2952, 1),
  (585, 1),
  (173, 1),
  (14, 1),
  (5294, 1),
  (2067, 1),
  (340, 1),
  (2165, 1),
  (5274, 1),
  (1147, 1),
  (5279, 1)],
 [(131, 1),
  (709, 1),
  (968, 1),
  (1452, 1),
  (5295, 1),
  (307, 1),
  (277, 1),
  (342, 1)],
 [(1026, 1),
  (263, 1),
  (151, 1),
  (5279, 1),
  (5281, 1),
  (164, 1),
  (557, 1),
  (605, 1),
  (48, 1),
  (435, 1),
  (2742, 1),
  (1083, 1),
  (830, 1),
  (2502, 1),
  (1354, 1),
  (339, 1),
  (477, 1),
  (1851, 1),
  (100, 1),
  (4596, 1),
  (117, 1),
  (120, 1),
  (125, 1)],
 [(2563, 1),
  (5127, 1),
  (14, 1),
  (15, 1),
  (151, 1),
  (29, 1),
  (672, 1),
  (5296, 1),
  (169, 1),
  (171, 1),
  (173, 1),
  (2096, 1),
  (5297, 1),
  (50, 1),
  (1076, 1),
  (567, 1),
  (449, 1),
  (71, 1),
  (2894, 1),
  (2640, 1),
  (2899, 1),
  (479, 1),
  (327, 1),
  (999, 1),
  (2152, 1),
  (1141, 1),
  (1399, 1)],
 [(1344, 1),
  (2, 1),
  (10, 1),
  (14, 1),
  (529, 1),
  (4118, 1),
  (151, 1),
  (5281, 1),
  (1331, 1),
  (3883, 1),
  (684, 1),
  (557, 1),
  (1199, 1),
  (5298, 1),
  (5299, 1),
  (5300, 1),
  (5301, 1),
  (5302, 1),
  (5303, 1),
  (5304, 1),
  (3257, 1),
  (5306, 1),
  (1083, 1),
  (2621, 1),
  (2165, 1),
  (2368, 1),
  (330, 1),
  (1483, 1),
  (207, 1),
  (1749, 1),
  (727, 1),
  (5305, 1),
  (1633, 1),
  (739, 1),
  (999, 1),
  (1897, 1),
  (362, 1),
  (3061, 1),
  (2555, 1)],
 [(5315, 1),
  (397, 1),
  (910, 1),
  (557, 1),
  (144, 1),
  (146, 1),
  (1147, 1),
  (5274, 1),
  (1563, 1),
  (5276, 1),
  (5277, 1),
  (288, 1),
  (37, 1),
  (5287, 1),
  (1193, 1),
  (173, 1),
  (2096, 1),
  (946, 1),
  (180, 1),
  (182, 1),
  (1207, 1),
  (5307, 1),
  (5308, 1),
  (5309, 1),
  (830, 1),
  (5311, 1),
  (5312, 1),
  (5313, 1),
  (5314, 1),
  (1483, 1),
  (5316, 1),
  (458, 1),
  (3143, 1),
  (968, 1),
  (330, 1),
  (1975, 1),
  (13, 1),
  (1362, 1),
  (340, 1),
  (14, 1),
  (446, 1),
  (473, 1),
  (463, 1),
  (3932, 1),
  (1757, 1),
  (421, 1),
  (1659, 1),
  (999, 1),
  (60, 1),
  (2284, 1),
  (110, 1),
  (114, 1),
  (5310, 1),
  (759, 1),
  (121, 1),
  (1531, 1)],
 [(769, 1),
  (2, 1),
  (4, 1),
  (773, 1),
  (134, 1),
  (1, 1),
  (267, 1),
  (780, 1),
  (13, 1),
  (571, 1),
  (416, 1),
  (198, 1),
  (5319, 1),
  (557, 1),
  (50, 1),
  (180, 1),
  (567, 1),
  (187, 1),
  (1212, 1),
  (330, 1),
  (321, 1),
  (5317, 1),
  (5318, 1),
  (1351, 1),
  (5320, 1),
  (5321, 1),
  (74, 1),
  (5323, 1),
  (1362, 1),
  (3259, 1),
  (470, 1),
  (5322, 1),
  (608, 1),
  (602, 1),
  (93, 1),
  (1888, 1),
  (1083, 1),
  (486, 1),
  (573, 1),
  (1737, 1),
  (1911, 1),
  (4344, 1)],
 [(288, 1),
  (48, 1),
  (4, 1),
  (709, 1),
  (968, 1),
  (169, 1),
  (727, 1),
  (173, 1),
  (2958, 1),
  (15, 1),
  (3152, 1),
  (149, 1),
  (23, 1),
  (123, 1)],
 [(5325, 1),
  (288, 1),
  (131, 1),
  (709, 1),
  (198, 1),
  (5324, 1),
  (267, 1),
  (1068, 1),
  (173, 1),
  (14, 1),
  (2895, 1),
  (4146, 1),
  (5326, 1),
  (1926, 1),
  (3032, 1),
  (1497, 1),
  (37, 1)],
 [(2, 1),
  (3, 1),
  (1677, 1),
  (280, 1),
  (2450, 1),
  (920, 1),
  (4124, 1),
  (288, 1),
  (36, 1),
  (550, 1),
  (5287, 1),
  (5329, 1),
  (173, 1),
  (5294, 1),
  (48, 1),
  (54, 1),
  (1975, 1),
  (184, 1),
  (60, 1),
  (1092, 1),
  (709, 1),
  (458, 1),
  (13, 1),
  (5328, 1),
  (2641, 1),
  (3032, 1),
  (5327, 1),
  (484, 1),
  (101, 1),
  (999, 1),
  (618, 1),
  (2284, 1),
  (3698, 1),
  (1011, 1),
  (170, 1),
  (106, 1)],
 [(1, 1),
  (282, 1),
  (5, 1),
  (2284, 1),
  (529, 1),
  (146, 1),
  (515, 1),
  (149, 1),
  (5337, 1),
  (280, 1),
  (793, 1),
  (5274, 1),
  (26, 1),
  (5279, 1),
  (1571, 1),
  (1829, 1),
  (298, 1),
  (557, 1),
  (5294, 1),
  (1309, 1),
  (48, 1),
  (74, 1),
  (182, 1),
  (1591, 1),
  (722, 1),
  (4409, 1),
  (1083, 1),
  (330, 1),
  (4925, 1),
  (5312, 1),
  (198, 1),
  (71, 1),
  (4818, 1),
  (73, 1),
  (1738, 1),
  (204, 1),
  (207, 1),
  (463, 1),
  (209, 1),
  (210, 1),
  (5331, 1),
  (5332, 1),
  (5333, 1),
  (5334, 1),
  (5335, 1),
  (5336, 1),
  (473, 1),
  (3023, 1),
  (486, 1),
  (999, 1),
  (106, 1),
  (3179, 1),
  (2668, 1),
  (5330, 1),
  (76, 1),
  (625, 1),
  (116, 1),
  (117, 1),
  (3190, 1),
  (1147, 1)],
 [(2572, 1),
  (2574, 1),
  (2074, 1),
  (288, 1),
  (169, 1),
  (4395, 1),
  (307, 1),
  (446, 1),
  (5188, 1),
  (968, 1),
  (14, 1),
  (1497, 1),
  (5338, 1),
  (5339, 1),
  (479, 1),
  (741, 1),
  (106, 1),
  (1131, 1),
  (365, 1),
  (497, 1),
  (121, 1),
  (4074, 1),
  (383, 1)],
 [(1536, 1), (4, 1), (14, 1), (567, 1)],
 [(616, 1), (721, 1), (216, 1), (5340, 1), (93, 1)],
 [(1, 1),
  (709, 1),
  (106, 1),
  (620, 1),
  (5341, 1),
  (2096, 1),
  (789, 1),
  (463, 1),
  (121, 1),
  (3259, 1),
  (29, 1),
  (5342, 1)],
 [(1282, 1),
  (131, 1),
  (3364, 1),
  (999, 1),
  (905, 1),
  (459, 1),
  (173, 1),
  (14, 1),
  (721, 1),
  (340, 1),
  (789, 1),
  (23, 1),
  (5343, 1),
  (127, 1)],
 [(5344, 1),
  (1506, 1),
  (4, 1),
  (11, 1),
  (114, 1),
  (14, 1),
  (397, 1),
  (3698, 1),
  (244, 1),
  (1497, 1),
  (1199, 1)],
 [(1, 1),
  (1287, 1),
  (267, 1),
  (140, 1),
  (403, 1),
  (3996, 1),
  (672, 1),
  (519, 1),
  (185, 1),
  (61, 1),
  (198, 1),
  (199, 1),
  (73, 1),
  (76, 1),
  (205, 1),
  (2527, 1),
  (5345, 1),
  (5346, 1),
  (5347, 1),
  (2021, 1),
  (621, 1),
  (1008, 1),
  (1393, 1),
  (2835, 1)],
 [(0, 1),
  (288, 1),
  (2563, 1),
  (5348, 1),
  (5349, 1),
  (5350, 1),
  (999, 1),
  (968, 1),
  (169, 1),
  (458, 1),
  (173, 1),
  (4713, 1),
  (1327, 1),
  (2610, 1),
  (214, 1),
  (727, 1),
  (1147, 1),
  (557, 1)],
 [(14, 1),
  (2067, 1),
  (789, 1),
  (5279, 1),
  (2976, 1),
  (557, 1),
  (5294, 1),
  (50, 1),
  (187, 1),
  (1599, 1),
  (288, 1),
  (198, 1),
  (1354, 1),
  (721, 1),
  (5330, 1),
  (340, 1),
  (4569, 1),
  (5352, 1),
  (5351, 1),
  (3816, 1),
  (5353, 1),
  (5354, 1),
  (5355, 1),
  (5356, 1),
  (495, 1),
  (112, 1),
  (497, 1),
  (1149, 1)],
 [(128, 1),
  (4, 1),
  (182, 1),
  (73, 1),
  (1228, 1),
  (50, 1),
  (173, 1),
  (146, 1),
  (5357, 1),
  (662, 1),
  (2008, 1),
  (2521, 1),
  (602, 1),
  (126, 1),
  (447, 1)],
 [(1, 1),
  (2, 1),
  (35, 1),
  (613, 1),
  (170, 1),
  (2381, 1),
  (5358, 1),
  (2962, 1),
  (662, 1),
  (2521, 1),
  (62, 1)],
 [(128, 1),
  (1154, 1),
  (648, 1),
  (2960, 1),
  (789, 1),
  (662, 1),
  (4976, 1),
  (1572, 1),
  (37, 1),
  (169, 1),
  (1962, 1),
  (1199, 1),
  (176, 1),
  (184, 1),
  (5364, 1),
  (2500, 1),
  (4167, 1),
  (72, 1),
  (73, 1),
  (461, 1),
  (77, 1),
  (720, 1),
  (4434, 1),
  (3928, 1),
  (602, 1),
  (2404, 1),
  (613, 1),
  (2924, 1),
  (5359, 1),
  (5360, 1),
  (5361, 1),
  (5362, 1),
  (5363, 1),
  (1524, 1),
  (1531, 1),
  (1020, 1),
  (2430, 1)],
 [(1, 1),
  (930, 1),
  (4, 1),
  (182, 1),
  (104, 1),
  (73, 1),
  (1578, 1),
  (5367, 1),
  (140, 1),
  (4168, 1),
  (50, 1),
  (307, 1),
  (5365, 1),
  (5366, 1),
  (183, 1),
  (5368, 1),
  (981, 1),
  (4798, 1),
  (255, 1)],
 [(1154, 1),
  (4, 1),
  (908, 1),
  (662, 1),
  (23, 1),
  (538, 1),
  (932, 1),
  (172, 1),
  (947, 1),
  (4022, 1),
  (3259, 1),
  (182, 1),
  (328, 1),
  (73, 1),
  (203, 1),
  (591, 1),
  (848, 1),
  (213, 1),
  (2409, 1),
  (5369, 1),
  (5370, 1),
  (5371, 1),
  (5372, 1),
  (5373, 1),
  (5374, 1)],
 [(5376, 1),
  (1154, 1),
  (4, 1),
  (1422, 1),
  (662, 1),
  (1156, 1),
  (543, 1),
  (37, 1),
  (1199, 1),
  (182, 1),
  (976, 1),
  (14, 1),
  (2521, 1),
  (608, 1),
  (613, 1),
  (1254, 1),
  (4712, 1),
  (618, 1),
  (1524, 1),
  (246, 1),
  (4215, 1),
  (248, 1),
  (121, 1),
  (5375, 1),
  (511, 1)],
 [(648, 1), (1, 1), (1162, 1), (662, 1)],
 [(5123, 1),
  (1, 1),
  (771, 1),
  (4, 1),
  (4385, 1),
  (5377, 1),
  (110, 1),
  (323, 1),
  (4436, 1),
  (1399, 1),
  (5364, 1),
  (4378, 1),
  (383, 1)],
 [(5383, 1),
  (2305, 1),
  (5378, 1),
  (5379, 1),
  (4, 1),
  (5381, 1),
  (5382, 1),
  (1287, 1),
  (5384, 1),
  (5385, 1),
  (267, 1),
  (13, 1),
  (14, 1),
  (173, 1),
  (146, 1),
  (1300, 1),
  (149, 1),
  (150, 1),
  (2200, 1),
  (5380, 1),
  (666, 1),
  (156, 1),
  (26, 1),
  (4127, 1),
  (416, 1),
  (35, 1),
  (932, 1),
  (37, 1),
  (169, 1),
  (299, 1),
  (1325, 1),
  (943, 1),
  (1, 1),
  (182, 1),
  (567, 1),
  (1849, 1),
  (1339, 1),
  (1340, 1),
  (61, 1),
  (1472, 1),
  (1312, 1),
  (2, 1),
  (451, 1),
  (455, 1),
  (4552, 1),
  (55, 1),
  (5197, 1),
  (977, 1),
  (340, 1),
  (600, 1),
  (1572, 1),
  (1499, 1),
  (476, 1),
  (5088, 1),
  (610, 1),
  (292, 1),
  (101, 1),
  (486, 1),
  (1212, 1),
  (530, 1),
  (5180, 1)],
 [(2, 1),
  (259, 1),
  (1380, 1),
  (613, 1),
  (578, 1),
  (529, 1),
  (117, 1),
  (662, 1),
  (23, 1),
  (2520, 1),
  (345, 1),
  (156, 1),
  (248, 1),
  (447, 1)],
 [(1, 1),
  (259, 1),
  (4, 1),
  (3590, 1),
  (5386, 1),
  (5387, 1),
  (12, 1),
  (13, 1),
  (1684, 1),
  (2837, 1),
  (662, 1),
  (151, 1),
  (2074, 1),
  (244, 1),
  (197, 1),
  (103, 1),
  (490, 1),
  (114, 1),
  (116, 1),
  (248, 1),
  (890, 1),
  (124, 1)],
 [(1, 1),
  (4, 1),
  (613, 1),
  (759, 1),
  (5388, 1),
  (2770, 1),
  (5389, 1),
  (50, 1),
  (2835, 1),
  (662, 1),
  (23, 1),
  (317, 1),
  (30, 1),
  (1206, 1)],
 [(1, 1),
  (3330, 1),
  (771, 1),
  (918, 1),
  (648, 1),
  (1162, 1),
  (267, 1),
  (2572, 1),
  (13, 1),
  (5390, 1),
  (5391, 1),
  (5392, 1),
  (5393, 1),
  (5394, 1),
  (5395, 1),
  (5396, 1),
  (5397, 1),
  (662, 1),
  (2521, 1),
  (24, 1),
  (25, 1),
  (3614, 1),
  (368, 1),
  (290, 1),
  (167, 1),
  (173, 1),
  (2991, 1),
  (5044, 1),
  (30, 1),
  (752, 1),
  (831, 1),
  (4419, 1),
  (708, 1),
  (3472, 1),
  (1863, 1),
  (72, 1),
  (5388, 1),
  (4682, 1),
  (1233, 1),
  (3282, 1),
  (1108, 1),
  (3193, 1),
  (1497, 1),
  (94, 1),
  (1504, 1),
  (144, 1),
  (613, 1),
  (1495, 1),
  (209, 1),
  (2024, 1),
  (4446, 1),
  (106, 1),
  (2795, 1),
  (365, 1),
  (4368, 1),
  (317, 1),
  (2672, 1),
  (114, 1),
  (2291, 1),
  (5364, 1),
  (246, 1),
  (759, 1),
  (1273, 1),
  (127, 1),
  (126, 1),
  (149, 1)],
 [(1, 1),
  (1154, 1),
  (4357, 1),
  (5384, 1),
  (5386, 1),
  (3603, 1),
  (21, 1),
  (662, 1),
  (5399, 1),
  (5400, 1),
  (5401, 1),
  (2021, 1),
  (2722, 1),
  (3887, 1),
  (3250, 1),
  (1331, 1),
  (5398, 1),
  (455, 1),
  (73, 1),
  (209, 1),
  (4831, 1),
  (1632, 1),
  (613, 1),
  (110, 1),
  (5107, 1),
  (1524, 1),
  (117, 1),
  (248, 1)],
 [(5406, 1),
  (128, 1),
  (1154, 1),
  (4, 1),
  (150, 1),
  (2182, 1),
  (519, 1),
  (3979, 1),
  (13, 1),
  (2, 1),
  (910, 1),
  (5391, 1),
  (529, 1),
  (2008, 1),
  (149, 1),
  (662, 1),
  (5402, 1),
  (27, 1),
  (5404, 1),
  (5405, 1),
  (30, 1),
  (1733, 1),
  (5408, 1),
  (5409, 1),
  (5410, 1),
  (5403, 1),
  (5412, 1),
  (5413, 1),
  (167, 1),
  (470, 1),
  (937, 1),
  (3330, 1),
  (434, 1),
  (302, 1),
  (5040, 1),
  (817, 1),
  (50, 1),
  (2485, 1),
  (54, 1),
  (3383, 1),
  (827, 1),
  (60, 1),
  (578, 1),
  (4677, 1),
  (2502, 1),
  (968, 1),
  (73, 1),
  (1228, 1),
  (77, 1),
  (2766, 1),
  (207, 1),
  (5407, 1),
  (5411, 1),
  (2574, 1),
  (342, 1),
  (600, 1),
  (2521, 1),
  (1757, 1),
  (976, 1),
  (1122, 1),
  (4113, 1),
  (106, 1),
  (4142, 1),
  (4333, 1),
  (368, 1),
  (1393, 1),
  (114, 1),
  (1011, 1),
  (1524, 1),
  (117, 1),
  (1144, 1),
  (121, 1),
  (1531, 1),
  (125, 1),
  (126, 1)],
 [(1, 1),
  (2, 1),
  (648, 1),
  (1033, 1),
  (662, 1),
  (48, 1),
  (5414, 1),
  (167, 1),
  (5416, 1),
  (5417, 1),
  (558, 1),
  (176, 1),
  (446, 1),
  (5415, 1),
  (1097, 1),
  (207, 1),
  (725, 1),
  (2014, 1),
  (613, 1),
  (2215, 1),
  (752, 1),
  (114, 1),
  (759, 1),
  (383, 1)],
 [(480, 1),
  (1, 1),
  (34, 1),
  (867, 1),
  (809, 1),
  (5418, 1),
  (3116, 1),
  (2, 1),
  (207, 1),
  (752, 1),
  (182, 1),
  (759, 1),
  (25, 1),
  (61, 1),
  (30, 1)],
 [(1, 1),
  (1061, 1),
  (455, 1),
  (648, 1),
  (169, 1),
  (3887, 1),
  (1129, 1),
  (29, 1),
  (3141, 1)],
 [(128, 1),
  (1, 1),
  (1449, 1),
  (167, 1),
  (616, 1),
  (169, 1),
  (5419, 1),
  (50, 1),
  (1422, 1),
  (4113, 1),
  (114, 1),
  (54, 1),
  (23, 1),
  (24, 1),
  (4, 1),
  (602, 1),
  (123, 1),
  (2431, 1)],
 [(128, 1),
  (1, 1),
  (645, 1),
  (13, 1),
  (146, 1),
  (788, 1),
  (150, 1),
  (1733, 1),
  (672, 1),
  (1572, 1),
  (5420, 1),
  (5421, 1),
  (5422, 1),
  (5423, 1),
  (182, 1),
  (567, 1),
  (187, 1),
  (416, 1),
  (709, 1),
  (73, 1),
  (74, 1),
  (55, 1),
  (463, 1),
  (1362, 1),
  (340, 1),
  (616, 1),
  (1132, 1),
  (1903, 1),
  (497, 1),
  (183, 1)],
 [(128, 1),
  (1154, 1),
  (150, 1),
  (648, 1),
  (13, 1),
  (14, 1),
  (3603, 1),
  (662, 1),
  (218, 1),
  (773, 1),
  (248, 1),
  (5, 1),
  (48, 1),
  (807, 1),
  (809, 1),
  (42, 1),
  (562, 1),
  (5018, 1),
  (5424, 1),
  (5425, 1),
  (5426, 1),
  (5427, 1),
  (2356, 1),
  (1016, 1),
  (54, 1),
  (5428, 1),
  (60, 1),
  (62, 1),
  (5429, 1),
  (2593, 1),
  (73, 1),
  (759, 1),
  (976, 1),
  (888, 1),
  (213, 1),
  (345, 1),
  (602, 1),
  (2512, 1),
  (209, 1),
  (491, 1),
  (1393, 1),
  (114, 1),
  (1524, 1),
  (117, 1),
  (2423, 1),
  (1144, 1),
  (831, 1),
  (2165, 1)],
 [(1, 1),
  (34, 1),
  (4, 1),
  (5430, 1),
  (294, 1),
  (1133, 1),
  (788, 1),
  (662, 1),
  (888, 1),
  (602, 1),
  (123, 1),
  (1085, 1)],
 [(1, 1),
  (2, 1),
  (1219, 1),
  (4, 1),
  (616, 1),
  (14, 1),
  (2740, 1),
  (117, 1),
  (24, 1),
  (122, 1),
  (125, 1)],
 [(1, 1),
  (1794, 1),
  (2021, 1),
  (439, 1),
  (13, 1),
  (147, 1),
  (117, 1),
  (5431, 1),
  (5432, 1)],
 [(1, 1),
  (616, 1),
  (2217, 1),
  (74, 1),
  (117, 1),
  (214, 1),
  (535, 1),
  (121, 1),
  (5434, 1),
  (5433, 1),
  (149, 1)],
 [(1, 1), (2572, 1), (117, 1)],
 [(1, 1),
  (482, 1),
  (5435, 1),
  (292, 1),
  (73, 1),
  (13, 1),
  (207, 1),
  (144, 1),
  (1011, 1),
  (54, 1),
  (215, 1),
  (123, 1),
  (5436, 1),
  (5437, 1),
  (5438, 1)],
 [(1, 1),
  (2, 1),
  (1956, 1),
  (966, 1),
  (1633, 1),
  (876, 1),
  (13, 1),
  (143, 1),
  (1011, 1),
  (23, 1),
  (5439, 1)],
 [(5440, 1),
  (1, 1),
  (2, 1),
  (35, 1),
  (4, 1),
  (5441, 1),
  (94, 1),
  (13, 1),
  (815, 1),
  (1172, 1),
  (149, 1),
  (61, 1),
  (30, 1),
  (383, 1)],
 [(128, 1),
  (1, 1),
  (5442, 1),
  (5443, 1),
  (932, 1),
  (5444, 1),
  (215, 1),
  (143, 1),
  (117, 1),
  (121, 1),
  (4473, 1),
  (911, 1),
  (1116, 1),
  (61, 1)],
 [(1, 1),
  (2, 1),
  (3, 1),
  (932, 1),
  (567, 1),
  (808, 1),
  (73, 1),
  (10, 1),
  (267, 1),
  (718, 1),
  (50, 1),
  (22, 1),
  (2313, 1),
  (3224, 1),
  (1156, 1),
  (26, 1),
  (29, 1),
  (169, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (1317, 1),
  (5446, 1),
  (711, 1),
  (73, 1),
  (720, 1),
  (117, 1),
  (55, 1),
  (60, 1),
  (5445, 1)],
 [(1, 1),
  (3010, 1),
  (3429, 1),
  (3337, 1),
  (492, 1),
  (463, 1),
  (720, 1),
  (147, 1),
  (182, 1),
  (207, 1)],
 [(2432, 1),
  (4, 1),
  (2166, 1),
  (262, 1),
  (5447, 1),
  (5448, 1),
  (5449, 1),
  (5450, 1),
  (13, 1),
  (718, 1),
  (173, 1),
  (616, 1),
  (1011, 1),
  (182, 1),
  (215, 1),
  (2168, 1),
  (1881, 1),
  (383, 1)],
 [(128, 1),
  (769, 1),
  (2, 1),
  (741, 1),
  (1670, 1),
  (5451, 1),
  (5452, 1),
  (5453, 1),
  (5454, 1),
  (911, 1),
  (183, 1),
  (23, 1),
  (5370, 1),
  (61, 1),
  (30, 1),
  (165, 1)],
 [(1, 1),
  (2, 1),
  (1797, 1),
  (262, 1),
  (769, 1),
  (780, 1),
  (362, 1),
  (1740, 1),
  (13, 1),
  (5455, 1),
  (1009, 1),
  (2740, 1),
  (1193, 1),
  (2779, 1)],
 [(896, 1),
  (1, 1),
  (262, 1),
  (1289, 1),
  (397, 1),
  (147, 1),
  (150, 1),
  (1945, 1),
  (2073, 1),
  (1451, 1),
  (173, 1),
  (2740, 1),
  (53, 1),
  (4670, 1),
  (5443, 1),
  (2502, 1),
  (1122, 1),
  (3918, 1),
  (5456, 1),
  (738, 1),
  (4455, 1),
  (2024, 1),
  (626, 1),
  (25, 1),
  (117, 1),
  (759, 1),
  (1656, 1)],
 [(512, 1),
  (193, 1),
  (5442, 1),
  (1797, 1),
  (1, 1),
  (718, 1),
  (5457, 1),
  (5458, 1),
  (1825, 1),
  (117, 1),
  (1137, 1),
  (2432, 1),
  (62, 1)],
 [(1536, 1),
  (1, 1),
  (1346, 1),
  (520, 1),
  (769, 1),
  (264, 1),
  (2204, 1),
  (128, 1),
  (939, 1),
  (5460, 1),
  (4239, 1),
  (976, 1),
  (5463, 1),
  (5459, 1),
  (1652, 1),
  (5461, 1),
  (5462, 1),
  (1239, 1),
  (601, 1),
  (3836, 1)],
 [(2432, 1),
  (1, 1),
  (2691, 1),
  (769, 1),
  (2572, 1),
  (399, 1),
  (34, 1),
  (280, 1),
  (147, 1),
  (24, 1),
  (1945, 1),
  (2460, 1),
  (1314, 1),
  (169, 1),
  (1578, 1),
  (2740, 1),
  (5470, 1),
  (182, 1),
  (1851, 1),
  (61, 1),
  (2242, 1),
  (5443, 1),
  (5444, 1),
  (968, 1),
  (1186, 1),
  (207, 1),
  (2082, 1),
  (982, 1),
  (215, 1),
  (5464, 1),
  (5465, 1),
  (5466, 1),
  (5467, 1),
  (5468, 1),
  (5469, 1),
  (94, 1),
  (5471, 1),
  (323, 1),
  (1131, 1),
  (2417, 1),
  (1011, 1),
  (117, 1),
  (3063, 1)],
 [(5472, 1),
  (1, 1),
  (5442, 1),
  (198, 1),
  (903, 1),
  (616, 1),
  (762, 1),
  (13, 1),
  (14, 1),
  (143, 1),
  (48, 1),
  (180, 1),
  (2365, 1),
  (23, 1),
  (345, 1),
  (90, 1),
  (61, 1),
  (30, 1)],
 [(5473, 1),
  (34, 1),
  (4, 1),
  (1669, 1),
  (1, 1),
  (616, 1),
  (1193, 1),
  (759, 1),
  (12, 1),
  (143, 1),
  (48, 1),
  (50, 1),
  (150, 1),
  (1367, 1),
  (1648, 1),
  (156, 1),
  (492, 1),
  (2256, 1)],
 [(1, 1),
  (2, 1),
  (1281, 1),
  (13, 1),
  (272, 1),
  (529, 1),
  (147, 1),
  (2465, 1),
  (173, 1),
  (561, 1),
  (50, 1),
  (949, 1),
  (2508, 1),
  (77, 1),
  (90, 1),
  (5474, 1),
  (5475, 1),
  (5476, 1),
  (5477, 1),
  (5478, 1),
  (5479, 1),
  (5480, 1),
  (114, 1),
  (1014, 1),
  (759, 1),
  (248, 1),
  (1146, 1)],
 [(1, 1),
  (867, 1),
  (901, 1),
  (4870, 1),
  (961, 1),
  (616, 1),
  (5481, 1),
  (1738, 1),
  (939, 1),
  (13, 1),
  (718, 1),
  (173, 1),
  (99, 1),
  (117, 1),
  (4759, 1),
  (879, 1),
  (4700, 1),
  (5055, 1)],
 [(1, 1),
  (1137, 1),
  (198, 1),
  (1633, 1),
  (169, 1),
  (5482, 1),
  (5483, 1),
  (13, 1),
  (77, 1),
  (272, 1),
  (529, 1),
  (497, 1),
  (117, 1),
  (150, 1),
  (30, 1)],
 [(2432, 1),
  (1, 1),
  (769, 1),
  (13, 1),
  (911, 1),
  (146, 1),
  (150, 1),
  (1444, 1),
  (37, 1),
  (169, 1),
  (1194, 1),
  (1327, 1),
  (176, 1),
  (50, 1),
  (2740, 1),
  (949, 1),
  (182, 1),
  (61, 1),
  (968, 1),
  (4681, 1),
  (982, 1),
  (601, 1),
  (483, 1),
  (2149, 1),
  (616, 1),
  (5484, 1),
  (5485, 1),
  (2417, 1),
  (1779, 1),
  (117, 1),
  (377, 1)],
 [(769, 1),
  (2307, 1),
  (263, 1),
  (9, 1),
  (12, 1),
  (3587, 1),
  (282, 1),
  (30, 1),
  (1825, 1),
  (1314, 1),
  (4520, 1),
  (1193, 1),
  (48, 1),
  (2740, 1),
  (1033, 1),
  (62, 1),
  (5443, 1),
  (715, 1),
  (342, 1),
  (3419, 1),
  (5486, 1),
  (5487, 1),
  (5488, 1),
  (5489, 1),
  (117, 1),
  (248, 1)],
 [(2, 1),
  (939, 1),
  (342, 1),
  (15, 1),
  (145, 1),
  (1554, 1),
  (151, 1),
  (2203, 1),
  (2460, 1),
  (34, 1),
  (169, 1),
  (1314, 1),
  (1964, 1),
  (2740, 1),
  (2360, 1),
  (5435, 1),
  (960, 1),
  (1474, 1),
  (5443, 1),
  (1607, 1),
  (2507, 1),
  (2125, 1),
  (3918, 1),
  (333, 1),
  (2091, 1),
  (1874, 1),
  (982, 1),
  (5467, 1),
  (1643, 1),
  (4081, 1),
  (5490, 1),
  (5491, 1),
  (5492, 1),
  (5493, 1),
  (5494, 1),
  (1144, 1)],
 [(128, 1),
  (769, 1),
  (4, 1),
  (134, 1),
  (1, 1),
  (2952, 1),
  (13, 1),
  (2964, 1),
  (23, 1),
  (30, 1),
  (37, 1),
  (2216, 1),
  (173, 1),
  (2740, 1),
  (60, 1),
  (709, 1),
  (848, 1),
  (982, 1),
  (1119, 1),
  (352, 1),
  (483, 1),
  (101, 1),
  (370, 1),
  (1011, 1),
  (116, 1),
  (117, 1),
  (5495, 1),
  (5496, 1)],
 [(1, 1),
  (2, 1),
  (2053, 1),
  (1670, 1),
  (4695, 1),
  (12, 1),
  (3729, 1),
  (146, 1),
  (5443, 1),
  (150, 1),
  (23, 1),
  (2073, 1),
  (4250, 1),
  (5403, 1),
  (1693, 1),
  (2079, 1),
  (33, 1),
  (35, 1),
  (809, 1),
  (1945, 1),
  (3633, 1),
  (2740, 1),
  (183, 1),
  (61, 1),
  (446, 1),
  (3392, 1),
  (2242, 1),
  (3523, 1),
  (147, 1),
  (3489, 1),
  (330, 1),
  (3918, 1),
  (215, 1),
  (602, 1),
  (3292, 1),
  (94, 1),
  (529, 1),
  (681, 1),
  (1405, 1),
  (5490, 1),
  (1267, 1),
  (759, 1),
  (1144, 1),
  (5497, 1),
  (5498, 1),
  (5499, 1),
  (5500, 1),
  (5501, 1)],
 [(5504, 1),
  (1, 1),
  (1282, 1),
  (771, 1),
  (4, 1),
  (903, 1),
  (2440, 1),
  (394, 1),
  (13, 1),
  (526, 1),
  (16, 1),
  (146, 1),
  (5505, 1),
  (151, 1),
  (4250, 1),
  (33, 1),
  (677, 1),
  (1037, 1),
  (114, 1),
  (50, 1),
  (4659, 1),
  (182, 1),
  (184, 1),
  (3978, 1),
  (77, 1),
  (205, 1),
  (720, 1),
  (4566, 1),
  (5497, 1),
  (602, 1),
  (1125, 1),
  (743, 1),
  (234, 1),
  (5506, 1),
  (3311, 1),
  (1136, 1),
  (754, 1),
  (120, 1),
  (121, 1),
  (123, 1),
  (5502, 1),
  (5503, 1)],
 [(1, 1),
  (5507, 1),
  (5508, 1),
  (616, 1),
  (2440, 1),
  (169, 1),
  (1131, 1),
  (558, 1),
  (1035, 1),
  (209, 1),
  (99, 1),
  (117, 1),
  (1497, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (36, 1),
  (5509, 1),
  (2182, 1),
  (497, 1),
  (616, 1),
  (60, 1),
  (267, 1),
  (12, 1),
  (1312, 1),
  (1393, 1),
  (50, 1),
  (416, 1),
  (5510, 1),
  (567, 1),
  (3257, 1),
  (33, 1),
  (3996, 1)],
 [(1985, 1),
  (2, 1),
  (1483, 1),
  (1, 1),
  (1505, 1),
  (5511, 1),
  (520, 1),
  (107, 1),
  (428, 1),
  (173, 1),
  (77, 1),
  (5357, 1),
  (4436, 1),
  (150, 1),
  (151, 1),
  (635, 1),
  (1884, 1),
  (13, 1)],
 [(1, 1),
  (4, 1),
  (134, 1),
  (1287, 1),
  (5512, 1),
  (5513, 1),
  (10, 1),
  (12, 1),
  (13, 1),
  (1296, 1),
  (2837, 1),
  (25, 1),
  (2073, 1),
  (2074, 1),
  (30, 1),
  (290, 1),
  (937, 1),
  (557, 1),
  (2224, 1),
  (562, 1),
  (317, 1),
  (4148, 1),
  (309, 1),
  (439, 1),
  (2572, 1),
  (187, 1),
  (61, 1),
  (446, 1),
  (949, 1),
  (578, 1),
  (2755, 1),
  (73, 1),
  (330, 1),
  (2508, 1),
  (77, 1),
  (3085, 1),
  (1105, 1),
  (723, 1),
  (121, 1),
  (1497, 1),
  (5514, 1),
  (2024, 1),
  (1001, 1),
  (492, 1),
  (1133, 1),
  (367, 1),
  (368, 1),
  (1011, 1),
  (1397, 1),
  (169, 1),
  (248, 1),
  (5497, 1),
  (762, 1),
  (635, 1),
  (120, 1)],
 [(1, 1),
  (4, 1),
  (918, 1),
  (264, 1),
  (172, 1),
  (5515, 1),
  (5516, 1),
  (5517, 1),
  (5518, 1),
  (5519, 1),
  (5520, 1),
  (5521, 1),
  (5522, 1),
  (5523, 1),
  (5524, 1),
  (5525, 1),
  (1046, 1),
  (5527, 1),
  (5528, 1),
  (5529, 1),
  (30, 1),
  (4895, 1),
  (37, 1),
  (2993, 1),
  (2092, 1),
  (45, 1),
  (48, 1),
  (4657, 1),
  (50, 1),
  (5308, 1),
  (4022, 1),
  (439, 1),
  (3384, 1),
  (1338, 1),
  (444, 1),
  (5526, 1),
  (71, 1),
  (328, 1),
  (5388, 1),
  (60, 1),
  (77, 1),
  (173, 1),
  (4713, 1),
  (237, 1),
  (661, 1),
  (116, 1),
  (126, 1),
  (127, 1)],
 [(1, 1),
  (98, 1),
  (4, 1),
  (1797, 1),
  (1222, 1),
  (872, 1),
  (73, 1),
  (117, 1),
  (176, 1),
  (5137, 1),
  (1941, 1),
  (2165, 1),
  (1144, 1),
  (1753, 1),
  (5530, 1),
  (1045, 1),
  (125, 1),
  (94, 1),
  (1119, 1)],
 [(4, 1),
  (1797, 1),
  (13, 1),
  (2574, 1),
  (5137, 1),
  (146, 1),
  (149, 1),
  (5531, 1),
  (29, 1),
  (37, 1),
  (45, 1),
  (175, 1),
  (2096, 1),
  (60, 1),
  (1345, 1),
  (2095, 1),
  (972, 1),
  (206, 1),
  (4560, 1),
  (2772, 1),
  (14, 1),
  (602, 1),
  (2014, 1),
  (608, 1),
  (356, 1),
  (1510, 1),
  (2280, 1),
  (1009, 1),
  (1011, 1)],
 [(1, 1), (80, 1), (1035, 1), (13, 1), (463, 1), (48, 1), (180, 1), (121, 1)],
 [(1572, 1),
  (726, 1),
  (4017, 1),
  (5416, 1),
  (173, 1),
  (13, 1),
  (206, 1),
  (2095, 1),
  (176, 1),
  (4664, 1),
  (3710, 1),
  (3798, 1),
  (25, 1),
  (536, 1),
  (4, 1),
  (58, 1),
  (5532, 1),
  (5533, 1),
  (589, 1)],
 [(1, 1),
  (578, 1),
  (3003, 1),
  (4, 1),
  (808, 1),
  (169, 1),
  (10, 1),
  (2, 1),
  (14, 1),
  (2095, 1),
  (2096, 1),
  (4328, 1),
  (1620, 1),
  (3662, 1),
  (283, 1),
  (5534, 1)],
 [(2, 1),
  (2563, 1),
  (4, 1),
  (14, 1),
  (1680, 1),
  (1554, 1),
  (1045, 1),
  (5535, 1),
  (5536, 1),
  (5537, 1),
  (5538, 1),
  (5539, 1),
  (5540, 1),
  (1071, 1),
  (176, 1),
  (182, 1),
  (1083, 1),
  (573, 1),
  (1733, 1),
  (1736, 1),
  (330, 1),
  (2528, 1),
  (230, 1),
  (2031, 1),
  (245, 1),
  (1147, 1)],
 [(326, 1),
  (5542, 1),
  (38, 1),
  (424, 1),
  (303, 1),
  (3798, 1),
  (510, 1),
  (5541, 1)],
 [(1, 1),
  (2, 1),
  (1027, 1),
  (4, 1),
  (519, 1),
  (1033, 1),
  (4618, 1),
  (14, 1),
  (4625, 1),
  (1045, 1),
  (26, 1),
  (29, 1),
  (944, 1),
  (557, 1),
  (48, 1),
  (567, 1),
  (1973, 1),
  (74, 1),
  (75, 1),
  (77, 1),
  (2318, 1),
  (602, 1),
  (93, 1),
  (94, 1),
  (2320, 1),
  (529, 1),
  (2664, 1),
  (1643, 1),
  (117, 1),
  (128, 1),
  (1153, 1),
  (132, 1),
  (140, 1),
  (146, 1),
  (150, 1),
  (151, 1),
  (156, 1),
  (672, 1),
  (681, 1),
  (172, 1),
  (173, 1),
  (185, 1),
  (187, 1),
  (206, 1),
  (1753, 1),
  (1781, 1),
  (250, 1),
  (2300, 1),
  (774, 1),
  (1287, 1),
  (267, 1),
  (3342, 1),
  (272, 1),
  (792, 1),
  (2338, 1),
  (1325, 1),
  (303, 1),
  (904, 1),
  (2354, 1),
  (4406, 1),
  (3896, 1),
  (1338, 1),
  (1341, 1),
  (4416, 1),
  (55, 1),
  (1364, 1),
  (2901, 1),
  (2404, 1),
  (362, 1),
  (317, 1),
  (1911, 1),
  (1914, 1),
  (382, 1),
  (2952, 1),
  (1419, 1),
  (4502, 1),
  (416, 1),
  (3490, 1),
  (5543, 1),
  (5544, 1),
  (5545, 1),
  (5546, 1),
  (5547, 1),
  (5548, 1),
  (5549, 1),
  (5550, 1),
  (5551, 1),
  (5552, 1),
  (5553, 1),
  (5554, 1),
  (948, 1),
  (949, 1),
  (1472, 1),
  (1474, 1),
  (968, 1),
  (486, 1),
  (1016, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (1797, 1),
  (1672, 1),
  (151, 1),
  (13, 1),
  (1422, 1),
  (21, 1),
  (919, 1),
  (25, 1),
  (4250, 1),
  (29, 1),
  (30, 1),
  (927, 1),
  (34, 1),
  (1830, 1),
  (173, 1),
  (48, 1),
  (946, 1),
  (5555, 1),
  (5556, 1),
  (5557, 1),
  (5558, 1),
  (5559, 1),
  (5560, 1),
  (5561, 1),
  (5562, 1),
  (5563, 1),
  (5564, 1),
  (5565, 1),
  (207, 1),
  (90, 1),
  (239, 1),
  (149, 1)],
 [(128, 1),
  (1, 1),
  (3429, 1),
  (4552, 1),
  (106, 1),
  (1483, 1),
  (13, 1),
  (14, 1),
  (4344, 1),
  (1374, 1),
  (150, 1),
  (23, 1),
  (408, 1),
  (153, 1),
  (74, 1),
  (5566, 1)],
 [(1, 1),
  (4, 1),
  (1797, 1),
  (11, 1),
  (13, 1),
  (14, 1),
  (5137, 1),
  (2196, 1),
  (3224, 1),
  (937, 1),
  (2095, 1),
  (2096, 1),
  (3251, 1),
  (5567, 1),
  (5568, 1),
  (5569, 1),
  (4619, 1),
  (198, 1),
  (602, 1),
  (103, 1),
  (4330, 1),
  (1142, 1),
  (119, 1),
  (1656, 1),
  (127, 1)],
 [(128, 1),
  (1, 1),
  (899, 1),
  (645, 1),
  (5129, 1),
  (14, 1),
  (2833, 1),
  (147, 1),
  (23, 1),
  (30, 1),
  (1695, 1),
  (45, 1),
  (558, 1),
  (2095, 1),
  (2096, 1),
  (50, 1),
  (3251, 1),
  (180, 1),
  (1545, 1),
  (2107, 1),
  (5570, 1),
  (5571, 1),
  (5572, 1),
  (968, 1),
  (207, 1),
  (1875, 1),
  (1797, 1),
  (1499, 1),
  (2785, 1),
  (1122, 1),
  (1147, 1),
  (486, 1),
  (5137, 1),
  (876, 1),
  (370, 1),
  (114, 1),
  (123, 1),
  (117, 1),
  (4091, 1),
  (125, 1)],
 [(128, 1),
  (515, 1),
  (4, 1),
  (262, 1),
  (143, 1),
  (272, 1),
  (149, 1),
  (150, 1),
  (151, 1),
  (900, 1),
  (3613, 1),
  (30, 1),
  (1733, 1),
  (290, 1),
  (4870, 1),
  (1704, 1),
  (45, 1),
  (2095, 1),
  (1864, 1),
  (54, 1),
  (439, 1),
  (2975, 1),
  (5578, 1),
  (449, 1),
  (5573, 1),
  (5574, 1),
  (5575, 1),
  (5576, 1),
  (5577, 1),
  (1354, 1),
  (5579, 1),
  (5580, 1),
  (5581, 1),
  (206, 1),
  (207, 1),
  (739, 1),
  (602, 1),
  (3423, 1),
  (483, 1),
  (103, 1),
  (2024, 1),
  (4027, 1),
  (110, 1),
  (822, 1),
  (123, 1),
  (1045, 1)],
 [(5507, 1),
  (13, 1),
  (14, 1),
  (5137, 1),
  (2709, 1),
  (161, 1),
  (1193, 1),
  (170, 1),
  (3628, 1),
  (45, 1),
  (2095, 1),
  (2096, 1),
  (50, 1),
  (1076, 1),
  (182, 1),
  (1467, 1),
  (5568, 1),
  (3780, 1),
  (77, 1),
  (5582, 1),
  (5583, 1),
  (848, 1),
  (5134, 1),
  (5584, 1),
  (616, 1),
  (3443, 1),
  (117, 1),
  (937, 1)],
 [(128, 1),
  (1, 1),
  (182, 1),
  (5585, 1),
  (72, 1),
  (1193, 1),
  (173, 1),
  (13, 1),
  (463, 1),
  (5586, 1),
  (2993, 1),
  (2354, 1),
  (150, 1),
  (440, 1),
  (602, 1),
  (124, 1),
  (918, 1),
  (1797, 1)],
 [(1, 1),
  (5590, 1),
  (520, 1),
  (13, 1),
  (2574, 1),
  (16, 1),
  (1555, 1),
  (1428, 1),
  (1941, 1),
  (150, 1),
  (24, 1),
  (26, 1),
  (795, 1),
  (30, 1),
  (36, 1),
  (37, 1),
  (169, 1),
  (173, 1),
  (1967, 1),
  (4403, 1),
  (948, 1),
  (1089, 1),
  (5059, 1),
  (207, 1),
  (5587, 1),
  (5588, 1),
  (5589, 1),
  (214, 1),
  (5591, 1),
  (2280, 1),
  (491, 1),
  (110, 1),
  (2024, 1),
  (115, 1),
  (116, 1),
  (3190, 1),
  (121, 1),
  (250, 1),
  (21, 1),
  (2453, 1)],
 [(36, 1),
  (73, 1),
  (29, 1),
  (48, 1),
  (3063, 1),
  (5592, 1),
  (5593, 1),
  (61, 1)],
 ...]

In [167]:
lda2 = gensim.models.ldamodel.LdaModel(corpus, num_topics=2,id2word = id2word,update_every=1,chunksize=20000,passes=1)


WARNING:gensim.models.ldamodel:too few updates, training might not converge; consider increasing the number of passes or iterations to improve accuracy

In [168]:
lda2.print_topics()


Out[168]:
[u'0.023*movie + 0.015*film + 0.012*time + 0.011*character + 0.008*scene + 0.008*story + 0.007*person + 0.007*thing + 0.006*plot + 0.006*actor',
 u'0.023*movie + 0.018*film + 0.011*character + 0.011*story + 0.009*time + 0.008*person + 0.008*way + 0.007*scene + 0.007*thing + 0.006*plot']

In [169]:
for bow in corpus[0:900:15]:
    print bow
    print lda2.get_document_topics(bow)
    print " ".join([id2word[e[0]] for e in bow])
    print "=========================================="


[(0, 1), (1, 1), (2, 1), (3, 1), (4, 1), (5, 1), (6, 1), (7, 1), (8, 1), (9, 1), (10, 1), (11, 1), (12, 1), (13, 1), (14, 1), (15, 1), (16, 1), (17, 1), (18, 1), (19, 1), (20, 1), (21, 1)]
[(0, 0.85544771338087922), (1, 0.14455228661912081)]
sure movie time opinion film change ooh thinking d**n ship acting oscar eye character performance hand director magnitude lesson love-story filmmaker romance
==========================================
[(1, 1), (4, 1), (342, 1), (135, 1), (267, 1), (12, 1), (13, 1), (15, 1), (24, 1), (150, 1), (151, 1), (280, 1), (26, 1), (346, 1), (176, 1), (214, 1), (304, 1), (294, 1), (295, 1), (296, 1), (297, 1), (298, 1), (299, 1), (300, 1), (301, 1), (302, 1), (303, 1), (48, 1), (305, 1), (306, 1), (307, 1), (308, 1), (309, 1), (310, 1), (311, 1), (312, 1), (313, 1), (314, 1), (315, 1), (316, 1), (317, 1), (318, 1), (319, 1), (320, 1), (321, 1), (322, 1), (323, 1), (324, 1), (325, 1), (326, 1), (327, 1), (328, 1), (329, 1), (330, 1), (55, 1), (332, 1), (333, 1), (78, 1), (335, 1), (336, 1), (337, 1), (338, 1), (339, 1), (340, 1), (334, 1), (203, 1), (343, 1), (7, 1), (345, 1), (331, 1), (94, 1), (344, 1), (103, 1), (106, 1), (39, 1), (114, 1), (244, 1), (245, 1), (120, 1), (341, 1)]
[(0, 0.038067869871107787), (1, 0.96193213012889212)]
movie film piece ray book eye character hand <br plot line aspect effect dredge fact audience alien comment science fiction movie-goer history genre height author critic gun story pre-pubescent teenager today basement thought provoking boundary condition sake record computer graphic sequence emperor clothe loudest.<br type goer knowledge dose wiz bang skill novel creation point action credulity intelligence hole belief capacity fist vision state title hallmark humanity crap thinking light limit kind moviegoer problem work future fan mind question premise body
==========================================
[(440, 1), (21, 1), (511, 1)]
[(0, 0.49407476905169068), (1, 0.50592523094830932)]
it.<br romance purpose
==========================================
[(1, 1), (262, 1), (649, 1), (651, 1), (652, 1), (653, 1), (654, 1), (655, 1), (656, 1), (657, 1), (658, 1), (659, 1), (660, 1), (34, 1), (560, 1), (564, 1), (565, 1), (567, 1), (440, 1), (327, 1), (584, 1), (204, 1), (589, 1), (602, 1), (93, 1), (613, 1), (234, 1), (109, 1), (499, 1), (117, 1), (632, 1)]
[(0, 0.035310471773140145), (1, 0.96468952822685983)]
movie minute waste wasting summary hair guess shear nba hair.<br college laugh.<br wishes.<br friend shaq boom box boy it.<br skill rapping need wish life kid player money beer hour comedy ghetto
==========================================
[(1, 1), (4, 1), (13, 1), (14, 1), (557, 1), (20, 1), (30, 1), (800, 1), (801, 1), (802, 1), (803, 1), (804, 1), (805, 1), (806, 1), (807, 1), (808, 1), (809, 1), (810, 1), (811, 1), (812, 1), (813, 1), (814, 1), (815, 1), (48, 1), (817, 1), (818, 1), (819, 1), (820, 1), (821, 1), (822, 1), (823, 1), (824, 1), (825, 1), (826, 1), (827, 1), (828, 1), (317, 1), (830, 1), (816, 1), (73, 1), (207, 1), (733, 1), (50, 1), (829, 1), (121, 1), (42, 1)]
[(0, 0.9311292126315418), (1, 0.068870787368458239)]
movie film character performance music filmmaker scene magnolia wall canvas shrieking twit regret guilt pain writing ball mess.<br match digression sin tableaus fate story believer puppeteer string fable display form convergence wave spread absolution field cadre sequence genius circumstance person end plague actor devotee cast stuff
==========================================
[(640, 1), (36, 1), (940, 1), (941, 1), (942, 1), (943, 1), (602, 1)]
[(0, 0.91172778132813281), (1, 0.088272218671867228)]
sore face comedy….man organ leg makeup life
==========================================
[(128, 1), (1, 1), (2, 1), (10, 1), (529, 1), (23, 1), (29, 1), (709, 1), (176, 1), (36, 1), (173, 1), (48, 1), (50, 1), (1097, 1), (439, 1), (443, 1), (60, 1), (573, 1), (1087, 1), (1088, 1), (1089, 1), (1090, 1), (1091, 1), (1092, 1), (1093, 1), (1094, 1), (1095, 1), (1096, 1), (73, 1), (330, 1), (1099, 1), (1100, 1), (1101, 1), (1098, 1), (348, 1), (102, 1), (161, 1), (121, 1), (127, 1)]
[(0, 0.59783964882318297), (1, 0.40216035117681692)]
way movie time acting bit job picture version fact face role story actor view wife past man reason anger hype complaint american hardship period masterpiece.<br saint infidelity aggression person point assumption up.<br attitude interpretation community best persona cast actress
==========================================
[(1, 1), (2, 1), (262, 1), (7, 1), (10, 1), (13, 1), (142, 1), (527, 1), (1179, 1), (1180, 1), (283, 1), (169, 1), (50, 1), (180, 1), (60, 1), (61, 1), (77, 1), (1237, 1), (1238, 1), (1239, 1), (1240, 1), (1241, 1), (1242, 1), (1243, 1), (1244, 1), (1245, 1), (1246, 1), (1247, 1), (1248, 1), (1249, 1), (226, 1), (872, 1), (111, 1), (573, 1)]
[(0, 0.97722948789773501), (1, 0.022770512102265019)]
movie time minute thinking acting character cliché that.<br friar wrestler direction year actor moment man guy script recess jack whale hammin misfire department.<br naff aneurism painful.<br remember pap plop to.<br total dream load reason
==========================================
[(4, 1), (198, 1), (73, 1), (1362, 1), (530, 1), (759, 1), (315, 1), (1343, 1)]
[(0, 0.27002312892601427), (1, 0.72997687107398579)]
film set person use focus game computer location
==========================================
[(1, 1), (4, 1), (10, 1), (13, 1), (1552, 1), (1557, 1), (1558, 1), (1559, 1), (1560, 1), (1561, 1), (1434, 1), (1563, 1), (1564, 1), (1562, 1), (30, 1), (1567, 1), (1568, 1), (1569, 1), (1570, 1), (1187, 1), (1193, 1), (1565, 1), (307, 1), (1566, 1), (182, 1), (1206, 1), (73, 1), (459, 1), (80, 1), (210, 1), (1571, 1), (484, 1), (1511, 1), (1106, 1), (117, 1), (21, 1)]
[(0, 0.9211126005920679), (1, 0.078887399407932143)]
movie film acting character passion coward commitment show.<br wedding potato escape joy consequence etc.).<br scene criticism cynicism examination window finance heart actions.<br today shoddiness thing lack person turn twist failure society foot remorse suspense comedy romance
==========================================
[(1, 1), (4, 1), (841, 1), (939, 1), (397, 1), (1646, 1), (1647, 1), (945, 1), (446, 1), (182, 1), (94, 1)]
[(0, 0.75790561226475395), (1, 0.24209438773524605)]
movie film boring group start teen mansion act night thing kind
==========================================
[(128, 1), (1, 1), (2, 1), (774, 1), (140, 1), (13, 1), (150, 1), (294, 1), (1447, 1), (557, 1), (562, 1), (188, 1), (1471, 1), (326, 1), (1738, 1), (1739, 1), (1740, 1), (1741, 1), (78, 1), (93, 1), (234, 1), (755, 1), (759, 1)]
[(0, 0.040045217028340359), (1, 0.9599547829716597)]
way movie time editing sense character plot comment flash music level dollar equipment bang vehicle chat board flavor hole kid money million game
==========================================
[(1, 1), (370, 1), (635, 1), (4, 1), (71, 1), (169, 1), (458, 1), (299, 1), (13, 1), (14, 1), (114, 1), (334, 1), (822, 1), (55, 1), (283, 1), (60, 1), (1962, 1), (30, 1)]
[(0, 0.95378325642061546), (1, 0.046216743579384635)]
movie plenty term film memory year lover genre character performance fan hallmark form action direction man support scene
==========================================
[(512, 1), (1, 1), (150, 1), (2065, 1), (2066, 1), (2067, 1), (2068, 1), (2069, 1), (2070, 1), (2071, 1), (24, 1), (1314, 1), (419, 1), (1572, 1), (421, 1), (55, 1), (699, 1), (61, 1), (446, 1), (1475, 1), (1862, 1), (341, 1), (966, 1), (1515, 1), (1267, 1), (119, 1)]
[(0, 0.46619251483444163), (1, 0.53380748516555832)]
bunch movie plot schtick soldier victim you!<br village cleansing slaughter <br attack row town rescue action seat guy night chopper money.<br body count explosions.<br battle child
==========================================
[(0, 1), (2, 1), (131, 1), (2186, 1), (2187, 1), (2188, 1), (2189, 1), (2190, 1), (2191, 1), (2192, 1), (2193, 1), (2194, 1), (2195, 1), (2196, 1), (1045, 1), (2198, 1), (2199, 1), (2200, 1), (25, 1), (2202, 1), (29, 1), (927, 1), (551, 1), (169, 1), (176, 1), (2201, 1), (446, 1), (2197, 1), (523, 1), (73, 1), (1485, 1), (1746, 1), (106, 1), (752, 1), (759, 1), (1428, 1), (123, 1), (234, 1), (383, 1)]
[(0, 0.021890103615292478), (1, 0.97810989638470747)]
sure time stage panhandler id prepaid casino bankroll risk spending sock contact yahoo drug reality poker hiding center day security picture cause cash year fact sleeping night housing sign person smoke bank work month game convention lot money tv
==========================================
[(128, 1), (4, 1), (397, 1), (14, 1), (16, 1), (529, 1), (150, 1), (25, 1), (920, 1), (153, 1), (1190, 1), (680, 1), (2218, 1), (299, 1), (45, 1), (2222, 1), (176, 1), (307, 1), (1987, 1), (2256, 1), (2299, 1), (486, 1), (1895, 1), (1130, 1), (2288, 1), (2294, 1), (2295, 1), (2296, 1), (2297, 1), (2298, 1), (123, 1), (2300, 1), (106, 1)]
[(0, 0.97082768569047551), (1, 0.02917231430952455)]
way film start performance director bit plot day help sort prize meantime boxing genre husband boxer fact today round ending.<br departure style rage fight ranking customer champ see.<br mystery-suspense silent lot punch work
==========================================
[(1, 1), (1508, 1), (262, 1), (294, 1), (104, 1), (169, 1), (2410, 1), (2411, 1), (2412, 1), (2413, 1), (2414, 1), (2415, 1), (2416, 1), (113, 1), (24, 1), (4, 1), (602, 1), (795, 1), (29, 1), (1548, 1)]
[(0, 0.96577961440552562), (1, 0.034220385594474316)]
movie generation minute comment reviewer year fogey etc.<br courtesy doberman et al pint pleasure <br film life episode picture travesty
==========================================
[(1, 1), (1387, 1), (37, 1), (262, 1), (2502, 1), (2507, 1), (492, 1), (14, 1), (1298, 1), (142, 1), (183, 1)]
[(0, 0.34225805562206801), (1, 0.6577419443779321)]
movie army woman minute right propaganda credit performance hell cliché course
==========================================
[(1536, 1), (150, 1), (103, 1), (136, 1), (2582, 1), (204, 1), (109, 1), (718, 1), (141, 1), (616, 1), (2578, 1), (2579, 1), (2580, 1), (2581, 1), (726, 1), (1083, 1), (446, 1), (2165, 1)]
[(0, 0.5148238371301902), (1, 0.48517616286980991)]
arm plot problem hope jinks need beer entertainment humour fun bag popcorn bouyant muppet chair song night tale
==========================================
[(147, 1), (1, 1), (739, 1), (4, 1), (758, 1), (33, 1), (2024, 1), (841, 1), (74, 1), (13, 1), (173, 1), (141, 1), (403, 1), (117, 1), (150, 1), (567, 1), (2008, 1), (1956, 1), (2650, 1), (1338, 1), (30, 1)]
[(0, 0.44219681356040169), (1, 0.55780318643959825)]
laugh movie impact film trap family home boring villain character role humour car comedy plot boy subplot slapstick holiday feeling scene
==========================================
[(128, 1), (1, 1), (10, 1), (591, 1), (48, 1), (50, 1), (2739, 1), (2740, 1), (150, 1), (1399, 1), (1368, 1), (1017, 1), (1354, 1)]
[(0, 0.5884511343437524), (1, 0.41154886565624754)]
way movie acting fashion story actor disgust.<br sub plot portrayal flop attention subject
==========================================
[(1, 1), (2, 1), (1474, 1), (848, 1), (499, 1), (121, 1)]
[(0, 0.68977779831876362), (1, 0.31022220168123638)]
movie time manner member hour cast
==========================================
[(1, 1), (2875, 1), (1956, 1), (101, 1), (2502, 1), (73, 1), (140, 1), (1133, 1), (558, 1), (13, 1), (720, 1), (529, 1), (691, 1), (150, 1), (857, 1), (153, 1), (100, 1), (2874, 1), (184, 1), (120, 1)]
[(0, 0.0788344973346434), (1, 0.92116550266535646)]
movie summation slapstick lead right person sense truth watch character movie.<br bit message plot jerk sort idea member.<br theme premise
==========================================
[(263, 1), (2465, 1), (2375, 1), (4, 1), (103, 1), (2024, 1), (138, 1), (939, 1), (492, 1), (13, 1), (2958, 1), (2959, 1), (48, 1), (81, 1), (114, 1), (2870, 1), (2960, 1), (26, 1), (2954, 1), (94, 1), (447, 1)]
[(0, 0.16116198545853039), (1, 0.83883801454146967)]
matter nose painting film problem home caricature group credit character them.<br ears story run fan time.<br strike effect lifestyle kind storyline
==========================================
[(3065, 1), (1, 1), (671, 1)]
[(0, 0.23147976236506002), (1, 0.76852023763494004)]
fetish movie punk
==========================================
[(1, 1), (2, 1), (4, 1), (2597, 1), (902, 1), (1505, 1), (968, 1), (73, 1), (343, 1), (204, 1), (878, 1), (143, 1), (1751, 1), (153, 1), (858, 1), (1983, 1), (92, 1), (3167, 1)]
[(0, 0.91651274728454457), (1, 0.083487252715455526)]
movie time film stupidity explain sheer theater person crap need pile joke bucket sort monster toilet trash cheesiest
==========================================
[(1, 1), (2, 1), (388, 1), (529, 1), (150, 1), (24, 1), (4, 1), (538, 1), (30, 1), (3253, 1), (932, 1), (1830, 1), (3250, 1), (3251, 1), (3252, 1), (3230, 1), (182, 1), (187, 1), (1852, 1), (74, 1), (1397, 1), (3254, 1), (73, 1), (330, 1), (1483, 1), (599, 1), (1008, 1), (3217, 1), (316, 1), (240, 1), (499, 1), (116, 1), (245, 1), (105, 1), (2301, 1)]
[(0, 0.77381423681525741), (1, 0.22618576318474265)]
movie time expectation bit plot <br film reviews scene krypyonite hero rock think hospital movie?<br continent thing screen henchman villain budget half-wit person point head son mistake kryptonite graphic half hour writer question doctor fear
==========================================
[(1, 1), (3, 1), (388, 1), (1797, 1), (10, 1), (140, 1), (13, 1), (150, 1), (4, 1), (670, 1), (288, 1), (33, 1), (1116, 1), (3372, 1), (477, 1), (48, 1), (1073, 1), (50, 1), (180, 1), (94, 1), (1338, 1), (60, 1), (1345, 1), (3138, 1), (196, 1), (455, 1), (1865, 1), (1100, 1), (3427, 1), (2398, 1), (3418, 1), (3419, 1), (3420, 1), (3421, 1), (3422, 1), (3423, 1), (3424, 1), (3425, 1), (3426, 1), (99, 1), (3428, 1), (2284, 1), (114, 1), (755, 1), (123, 1), (382, 1)]
[(0, 0.77293641662866819), (1, 0.22706358337133187)]
movie opinion expectation violence acting sense character plot film school production family force adamantium maker story motivation actor moment kind feeling man death skeleton nature relationship project up.<br vù mystery arch.<br screw comics.<br xmen wolverine one.<br marvel hero.<br dejá flick back-story revenge fan million lot enemy
==========================================
[(1, 1), (34, 1), (1659, 1), (1348, 1), (262, 1), (13, 1), (2287, 1), (50, 1), (153, 1), (571, 1)]
[(0, 0.56305953035012957), (1, 0.43694046964987049)]
movie friend rate development minute character favourite actor sort cinema
==========================================
[(128, 1), (1, 1), (4, 1), (2182, 1), (395, 1), (13, 1), (146, 1), (2844, 1), (2846, 1), (1116, 1), (1068, 1), (48, 1), (3637, 1), (3638, 1), (3639, 1), (3640, 1), (3641, 1), (3642, 1), (3643, 1), (3644, 1), (2758, 1), (455, 1), (2124, 1), (207, 1), (2640, 1), (1080, 1), (3540, 1), (1500, 1), (2024, 1), (1001, 1), (2925, 1), (1648, 1)]
[(0, 0.031649095312947115), (1, 0.96835090468705287)]
way movie film boss mile character world colonial indochine force scope story geography underpinning subjects.<br link remembrance colonialism ty relationships.<br ride relationship thousand end confusion black dignity struggle home tension peer beginning
==========================================
[(1, 1), (4, 1), (1032, 1), (13, 1), (15, 1), (1554, 1), (3613, 1), (30, 1), (3762, 1), (48, 1), (2102, 1), (3764, 1), (1083, 1), (578, 1), (2628, 1), (3143, 1), (74, 1), (183, 1), (1101, 1), (3769, 1), (600, 1), (3770, 1), (94, 1), (187, 1), (3771, 1), (103, 1), (618, 1), (3698, 1), (1147, 1), (1149, 1), (127, 1), (130, 1), (131, 1), (137, 1), (3745, 1), (3746, 1), (3747, 1), (3748, 1), (3749, 1), (3750, 1), (3751, 1), (3752, 1), (169, 1), (3754, 1), (3755, 1), (3756, 1), (173, 1), (3758, 1), (3759, 1), (3760, 1), (3761, 1), (178, 1), (3763, 1), (180, 1), (3765, 1), (3766, 1), (3767, 1), (3768, 1), (3257, 1), (698, 1), (699, 1), (3772, 1), (3757, 1), (709, 1), (198, 1), (1736, 1), (2766, 1), (207, 1), (212, 1), (727, 1), (739, 1), (741, 1), (1255, 1), (239, 1), (1779, 1), (2312, 1), (788, 1), (288, 1), (2858, 1), (314, 1), (330, 1), (848, 1), (340, 1), (342, 1), (862, 1), (1895, 1), (487, 1), (1902, 1), (367, 1), (3459, 1), (397, 1), (910, 1), (912, 1), (2962, 1), (917, 1), (410, 1), (2978, 1), (1449, 1), (939, 1), (432, 1), (945, 1), (435, 1), (976, 1), (465, 1), (164, 1), (999, 1), (1524, 1), (3753, 1), (2555, 1)]
[(0, 0.30452911279758349), (1, 0.69547088720241645)]
movie film office character hand surface sympathy scene employment story weakness predicament song casting crown return villain course attitude lord father offense kind screen usher problem effort musical voice highlight actress closing stage majority jewel on-screen factor lacking resonance svengali-like stand-point trio year devotion diva unprofessionalism role implication motherhood mothering unemployment talent gap moment cabaret belting melange strut singer edge seat puddle slack version set energy era end department singing impact rendition charge girl position desperation event production glitz record point member title piece portion rage emotion mother winner signature start daughter contestant behavior producer card disco charisma group technique act number result depth business score manager selling tune
==========================================
[(3714, 1), (4, 1), (262, 1), (522, 1), (13, 1), (24, 1), (173, 1), (50, 1), (1206, 1), (698, 1), (60, 1), (317, 1), (3796, 1), (100, 1), (1130, 1), (3820, 1), (3826, 1), (3827, 1), (3828, 1), (3829, 1), (3830, 1), (3448, 1)]
[(0, 0.47125127414944118), (1, 0.52874872585055888)]
pocket film minute fall character <br role actor lack edge man sequence prequel idea fight lava tax film-maker film-maker.<br darkness sabre trilogy
==========================================
[(4, 1), (12, 1), (13, 1), (16, 1), (2067, 1), (24, 1), (26, 1), (2589, 1), (31, 1), (32, 1), (33, 1), (1571, 1), (37, 1), (38, 1), (3623, 1), (2090, 1), (1068, 1), (45, 1), (52, 1), (567, 1), (3642, 1), (60, 1), (61, 1), (3140, 1), (3141, 1), (70, 1), (71, 1), (590, 1), (3151, 1), (600, 1), (2147, 1), (1133, 1), (787, 1), (1144, 1), (124, 1), (3710, 1), (1165, 1), (1678, 1), (2199, 1), (157, 1), (164, 1), (169, 1), (176, 1), (184, 1), (2753, 1), (196, 1), (3192, 1), (214, 1), (1771, 1), (237, 1), (255, 1), (769, 1), (259, 1), (3859, 1), (1305, 1), (3364, 1), (2341, 1), (807, 1), (822, 1), (3384, 1), (317, 1), (831, 1), (3912, 1), (3913, 1), (3914, 1), (3915, 1), (3916, 1), (3917, 1), (3918, 1), (3919, 1), (3920, 1), (3921, 1), (3922, 1), (3923, 1), (3924, 1), (341, 1), (3926, 1), (3927, 1), (3928, 1), (3929, 1), (1884, 1), (1902, 1), (1001, 1), (1401, 1), (385, 1), (900, 1), (1423, 1), (1424, 1), (2964, 1), (1435, 1), (412, 1), (1444, 1), (3506, 1), (1973, 1), (3517, 1), (331, 1), (455, 1), (3540, 1), (480, 1), (1510, 1), (487, 1), (2024, 1), (3561, 1), (490, 1), (2541, 1), (1193, 1), (1531, 1), (3925, 1)]
[(0, 0.26195177240191797), (1, 0.73804822759808197)]
film eye character director victim <br effect disdain dinner table family society woman room stature stand scope husband mountain boy colonialism man guy household perspective childhood memory sky bond father poem truth pace country interaction friendship teacher government hiding space business year fact theme glance nature official audience plate servant food crew coach mirror dress replacement kitchen pain form longing sequence public chocolat emphasis manservant bronze bedroom ant command propeller passenger compound visitor plantation balance body confrontation manservant.<br isolation oppressor phrase mother tension shoulder spite house attraction conversation gesture land coffee rule shower adult mistress limit relationship dignity plane image emotion home walk tone upset heart owner taunt
==========================================
[(1, 1), (2, 1), (3971, 1), (3972, 1), (3973, 1), (262, 1), (903, 1), (3976, 1), (30, 1), (1165, 1), (557, 1), (146, 1), (920, 1), (4, 1), (900, 1), (28, 1), (670, 1), (931, 1), (932, 1), (3974, 1), (3975, 1), (173, 1), (1583, 1), (50, 1), (180, 1), (2485, 1), (187, 1), (60, 1), (317, 1), (1219, 1), (327, 1), (1225, 1), (1612, 1), (461, 1), (3469, 1), (1490, 1), (347, 1), (93, 1), (738, 1), (483, 1), (769, 1), (2165, 1), (119, 1), (2424, 1), (126, 1)]
[(0, 0.13239594886230058), (1, 0.86760405113769945)]
movie time crapfest bastardization.<br asininity minute film.<br badger scene teacher music world help film house rent school loser hero biker spittle.<br role wind actor moment vacation screen man sequence here.<br skill appearance fringe dog bout dance robot kid bomb series crew tale child military element
==========================================
[(128, 1), (48, 1), (2, 1), (4, 1), (649, 1), (13, 1), (1133, 1), (1519, 1), (240, 1), (54, 1), (100, 1), (4026, 1), (1615, 1), (447, 1)]
[(0, 0.43758482647249103), (1, 0.56241517352750892)]
way story time film waste character truth rubbish half place idea robinson brother storyline
==========================================
[(4064, 1), (1, 1), (1123, 1), (48, 1), (1254, 1), (4065, 1), (1449, 1), (77, 1), (720, 1), (50, 1), (1938, 1), (340, 1), (182, 1), (24, 1), (3449, 1), (123, 1), (61, 1), (30, 1)]
[(0, 0.92613176169210099), (1, 0.073868238307898904)]
notoriety movie appeal story doubt recipe charisma script movie.<br actor parent title thing <br script.<br lot guy scene
==========================================
[(1, 1), (264, 1), (4105, 1), (4106, 1), (4107, 1), (141, 1), (14, 1), (4056, 1), (2834, 1), (562, 1), (4104, 1), (50, 1), (182, 1), (187, 1), (335, 1), (3540, 1), (600, 1), (93, 1), (94, 1), (110, 1), (243, 1), (117, 1), (119, 1)]
[(0, 0.96329238429017527), (1, 0.036707615709824802)]
movie attempt onslaught crudity lowlight humour performance beggar sentimentality level kudo actor thing screen belief dignity father kid kind experience mouth comedy child
==========================================
[(1, 1), (259, 1), (4, 1), (449, 1), (780, 1), (14, 1), (16, 1), (788, 1), (22, 1), (153, 1), (24, 1), (25, 1), (538, 1), (90, 1), (670, 1), (33, 1), (550, 1), (1193, 1), (4141, 1), (302, 1), (182, 1), (827, 1), (573, 1), (62, 1), (1345, 1), (1477, 1), (455, 1), (72, 1), (73, 1), (330, 1), (3151, 1), (725, 1), (169, 1), (602, 1), (3291, 1), (1830, 1), (103, 1), (12, 1), (125, 1), (241, 1), (140, 1), (117, 1), (2934, 1), (759, 1), (248, 1), (509, 1)]
[(0, 0.083891531674858258), (1, 0.9161084683251417)]
movie coach film conclusion share performance director event rating sort <br day reviews mix school family deal heart butt critic thing field reason star death football relationship touch person point bond issue year life priority rock problem eye drama men sense comedy dramas game team building
==========================================
[(128, 1), (1346, 1), (4, 1), (73, 1), (13, 1), (14, 1), (150, 1), (55, 1), (602, 1), (2714, 1)]
[(0, 0.11019210305266998), (1, 0.88980789694732998)]
way slow film person character performance plot action life buff
==========================================
[(34, 1), (3, 1), (613, 1), (4235, 1), (2, 1), (1615, 1), (3250, 1), (4244, 1), (759, 1), (1497, 1)]
[(0, 0.89678545309651791), (1, 0.10321454690348218)]
friend opinion player mode time brother think multi-player game video
==========================================
[(1, 1), (2, 1), (3, 1), (1381, 1), (4329, 1), (4012, 1), (1560, 1), (1305, 1)]
[(0, 0.12830898295225734), (1, 0.87169101704774266)]
movie time opinion everybody tuxedo quote wedding dress
==========================================
[(1, 1), (264, 1), (10, 1), (1938, 1), (1173, 1), (23, 1), (33, 1), (1704, 1), (557, 1), (176, 1), (691, 1), (183, 1), (4412, 1), (4413, 1), (2502, 1), (78, 1), (207, 1), (4180, 1), (463, 1), (103, 1), (60, 1), (2809, 1)]
[(0, 0.16335428339310781), (1, 0.83664571660689224)]
movie attempt acting parent set-up job family spoiler music fact message course fiance pigeon right hole end acceptance rest problem man mannerism
==========================================
[(1, 1), (2891, 1), (116, 1), (830, 1)]
[(0, 0.84363820610123841), (1, 0.15636179389876159)]
movie stroke writer genius
==========================================
[(2, 1), (4, 1), (261, 1), (435, 1), (280, 1), (29, 1), (800, 1), (4513, 1), (4514, 1), (4515, 1), (4516, 1), (4517, 1), (1446, 1), (3495, 1), (42, 1), (3143, 1), (307, 1), (1353, 1), (571, 1), (573, 1), (708, 1), (1607, 1), (73, 1), (2770, 1), (1500, 1), (677, 1), (1122, 1), (2155, 1), (1391, 1), (4465, 1)]
[(0, 0.053795388924666225), (1, 0.94620461107533382)]
time film motion number aspect picture magnolia sceptic mainstream sell-out spears.<br revenue approach celebrity stuff return today artist cinema reason industry sale person recognition struggle magic language consumer faith pornography
==========================================
[(1281, 1), (900, 1), (4069, 1), (262, 1), (71, 1), (937, 1), (619, 1), (1132, 1), (1646, 1), (239, 1), (48, 1), (2258, 1), (307, 1), (84, 1), (1, 1), (23, 1), (538, 1), (151, 1), (1857, 1)]
[(0, 0.057144291807999958), (1, 0.94285570819199993)]
choice house babysitter minute memory situation cell trouble teen girl story phone today killer movie job reviews line crack
==========================================
[(1, 1), (4614, 1), (4615, 1), (4616, 1), (13, 1), (1567, 1), (169, 1), (42, 1), (690, 1), (302, 1), (48, 1), (946, 1), (182, 1), (60, 1), (446, 1), (1348, 1), (214, 1), (345, 1), (99, 1), (4069, 1), (616, 1), (2027, 1)]
[(0, 0.045135899483411429), (1, 0.95486410051658854)]
movie mofo willies.<br minority character criticism year stuff folk critic story taste thing man night development audience light flick babysitter fun dude
==========================================
[(128, 1), (1345, 1), (4, 1), (4641, 1), (330, 1), (207, 1), (2928, 1), (627, 1), (1076, 1), (725, 1), (4664, 1)]
[(0, 0.06568644161749583), (1, 0.93431355838250418)]
way death film penalty point end killing tear murder issue forgiveness
==========================================
[(1, 1), (1508, 1), (1254, 1), (230, 1), (1345, 1), (298, 1), (50, 1), (654, 1), (385, 1), (4690, 1), (182, 1), (60, 1), (991, 1)]
[(0, 0.49642056981395066), (1, 0.50357943018604934)]
movie generation doubt soundtrack death history actor guess spite fotography thing man credibility
==========================================
[(4352, 1), (1, 1), (2, 1), (171, 1), (4, 1), (903, 1), (4745, 1), (4746, 1), (4747, 1), (4748, 1), (13, 1), (14, 1), (4751, 1), (2064, 1), (1045, 1), (150, 1), (1816, 1), (4127, 1), (4749, 1), (1954, 1), (292, 1), (327, 1), (173, 1), (463, 1), (50, 1), (908, 1), (2313, 1), (184, 1), (60, 1), (701, 1), (4542, 1), (321, 1), (709, 1), (4423, 1), (73, 1), (1867, 1), (2445, 1), (976, 1), (4561, 1), (4562, 1), (4750, 1), (3542, 1), (2803, 1), (602, 1), (1499, 1), (94, 1), (4752, 1), (741, 1), (445, 1), (497, 1), (1011, 1), (2036, 1), (631, 1), (121, 1)]
[(0, 0.84904543179960401), (1, 0.15095456820039599)]
spotlight movie time performer film film.<br grease stain true-to-life lounge character performance theme.<br farce reality plot contrast treat slime lizard scenery skill role rest actor host nomination theme man tooth milieu type version professional person merit uncle result polyester craft pathetic.<br farce.<br study life ability kind tier rendition character.<br age humor shine example cast
==========================================
[(1, 1), (1222, 1), (1286, 1), (1953, 1), (74, 1), (207, 1), (4788, 1), (61, 1)]
[(0, 0.20231685169719016), (1, 0.79768314830280984)]
movie trailer screening tonight villain end scariest guy
==========================================
[(128, 1), (1, 1), (2, 1), (1092, 1), (22, 1), (520, 1), (937, 1), (4810, 1), (2066, 1), (340, 1), (53, 1), (150, 1), (55, 1), (61, 1), (670, 1)]
[(0, 0.92470798480953864), (1, 0.075292015190461345)]
way movie time period rating surprise situation douchebag soldier title terrorist plot action guy school
==========================================
[(1, 1), (2, 1), (4, 1), (1669, 1), (262, 1), (257, 1), (904, 1), (3722, 1), (267, 1), (14, 1), (15, 1), (16, 1), (2194, 1), (150, 1), (25, 1), (4250, 1), (26, 1), (30, 1), (288, 1), (2084, 1), (1830, 1), (3882, 1), (2865, 1), (1489, 1), (435, 1), (54, 1), (186, 1), (2238, 1), (447, 1), (1984, 1), (139, 1), (328, 1), (1866, 1), (1483, 1), (499, 1), (976, 1), (4856, 1), (483, 1), (4857, 1), (602, 1), (479, 1), (4859, 1), (230, 1), (1397, 1), (234, 1), (107, 1), (4861, 1), (3696, 1), (370, 1), (4851, 1), (4852, 1), (4853, 1), (4854, 1), (4855, 1), (248, 1), (1017, 1), (4858, 1), (123, 1), (4860, 1), (682, 1), (254, 1), (127, 1)]
[(0, 0.61068175912505407), (1, 0.38931824087494604)]
movie time film make-up minute slew montage lace book performance hand director contact plot day sea effect scene production heck rock vampire directing dancing number place page garbage storyline roll noggin novel justice head hour result sickness series goth-rock life quality right.<br soundtrack budget money brain mini flesh plenty damned history.<br narration resource elegance team attention splice lot belly addition health actress
==========================================
[(48, 1), (2, 1), (117, 1), (4919, 1)]
[(0, 0.17553679538744085), (1, 0.82446320461255918)]
story time comedy arse
==========================================
[(867, 1), (197, 1), (1001, 1), (299, 1), (236, 1), (13, 1), (1711, 1), (147, 1), (628, 1), (30, 1), (1110, 1), (345, 1), (121, 1), (830, 1)]
[(0, 0.93565134601601785), (1, 0.06434865398398211)]
sequel dialogue tension genre parody character gripping laugh thrill scene heist light cast genius
==========================================
[(1, 1), (2, 1), (899, 1), (5036, 1), (5002, 1), (267, 1), (2179, 1), (1940, 1), (150, 1), (5030, 1), (5031, 1), (5032, 1), (5033, 1), (5034, 1), (5035, 1), (1068, 1), (1339, 1), (1163, 1), (759, 1), (295, 1), (1391, 1), (114, 1), (1399, 1), (121, 1), (1659, 1), (764, 1)]
[(0, 0.5476727064199739), (1, 0.45232729358002616)]
movie time blood convert religion book race debate plot puzzles.<br jean shirt searcher newcomer calm scope adaptation search game science faith fan portrayal cast rate thriller
==========================================
[(128, 1), (1, 1), (2, 1), (4, 1), (1286, 1), (7, 1), (770, 1), (150, 1), (151, 1), (26, 1), (3486, 1), (262, 1), (169, 1), (562, 1), (48, 1), (50, 1), (309, 1), (1212, 1), (4670, 1), (821, 1), (1101, 1), (465, 1), (214, 1), (94, 1), (487, 1), (106, 1), (626, 1), (5108, 1), (5109, 1)]
[(0, 0.12200061595064954), (1, 0.87799938404935041)]
way movie time film screening thinking commentary plot line effect empathy minute year level story actor thought advance topic display attitude depth audience kind emotion work epic postman blundering
==========================================
[(4, 1), (41, 1), (14, 1), (690, 1), (1193, 1), (762, 1), (60, 1)]
[(0, 0.35451524219470437), (1, 0.64548475780529568)]
film connection performance folk heart entertaining man
==========================================
[(96, 1), (896, 1), (578, 1), (33, 1), (3271, 1), (1193, 1), (128, 1), (4939, 1), (876, 1), (147, 1), (436, 1), (5143, 1), (218, 1), (1788, 1), (2554, 1)]
[(0, 0.9461130857660528), (1, 0.053886914233947168)]
scenario enjoy casting family chocolate heart way cup expression laugh weekend sip respect presence honey
==========================================
[(128, 1), (2944, 1), (899, 1), (4, 1), (3462, 1), (12, 1), (13, 1), (910, 1), (2072, 1), (3859, 1), (24, 1), (25, 1), (1266, 1), (175, 1), (176, 1), (946, 1), (243, 1), (446, 1), (182, 1), (439, 1), (440, 1), (3897, 1), (58, 1), (60, 1), (5181, 1), (5182, 1), (5183, 1), (71, 1), (3018, 1), (459, 1), (403, 1), (205, 1), (4311, 1), (698, 1), (4193, 1), (763, 1), (3300, 1), (869, 1), (529, 1), (872, 1), (618, 1), (2802, 1), (1395, 1), (116, 1), (885, 1), (631, 1), (4218, 1), (123, 1)]
[(0, 0.94387366385809401), (1, 0.056126336141905916)]
way wheel blood film consciousness eye character daughter hollywood mirror <br day atmosphere air fact taste mouth night thing wife it.<br path cold man affliction pre-pulp actioner memory photography turn car feel setup edge assassin comeback nemesis concept bit dream effort finger sidekick writer baddy example streak lot
==========================================
[(1, 1), (2051, 1), (4, 1), (1797, 1), (385, 1), (2284, 1), (1035, 1), (140, 1), (269, 1), (529, 1), (2322, 1), (4372, 1), (150, 1), (3096, 1), (2586, 1), (1308, 1), (30, 1), (2565, 1), (1371, 1), (932, 1), (3367, 1), (169, 1), (5214, 1), (173, 1), (180, 1), (821, 1), (54, 1), (55, 1), (698, 1), (61, 1), (4288, 1), (96, 1), (198, 1), (73, 1), (74, 1), (3020, 1), (1037, 1), (1409, 1), (3154, 1), (1364, 1), (342, 1), (280, 1), (88, 1), (5210, 1), (5211, 1), (5212, 1), (5213, 1), (478, 1), (1375, 1), (480, 1), (4193, 1), (738, 1), (99, 1), (996, 1), (486, 1), (273, 1), (5100, 1), (1781, 1), (3448, 1), (2300, 1), (126, 1)]
[(0, 0.56503294070605592), (1, 0.43496705929394408)]
movie liner film violence spite revenge formula sense protagonist bit cigarette station plot grab corpse screen.<br scene echo physics hero break year pyrotechnic role moment display place action edge guy shootout scenario set person villain hint sarcasm heroine hall explosion piece aspect power crossfire cargo action-heroine chemical hit train plane assassin bomb flick weapon style law wisecrack intent trilogy punch element
==========================================

It looks like topic 2 is about the external factors of a movie -- who the actors are and how production went, and topic 1 is about the intrinsic factors of a movie -- the character development and plot. Examples:

* words like "movie" "actor" "film" or "budget" "film" have higher topic 2 ratings. 
* words like "relationship" "scenery" "personality" have a higher topic 1 rating

3. Run the sentiment analysis on the adjectives


In [40]:
nbdata = [ele[1] for ele in review_parts]


---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
<ipython-input-40-ed84dce6f32a> in <module>()
----> 1 nbdata = [ele[1] for ele in review_parts]

NameError: name 'review_parts' is not defined

In [41]:
adj_raw = list(flatten_iter(nbdata))
#removinc duplicates
adj_unique = []
for i in adj_raw:
    if i not in adj_unique:
        adj_unique.append(i)


---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
<ipython-input-41-09e944c5e5de> in <module>()
----> 1 adj_raw = list(flatten_iter(nbdata))
      2 #removinc duplicates
      3 adj_unique = []
      4 for i in adj_raw:
      5     if i not in adj_unique:

NameError: name 'flatten_iter' is not defined

In [172]:
adjvocab = {}
for i in range(len(adj_unique)):
    adjvocab[adj_unique[i]] = i

In [173]:
adjvocab['great']


Out[173]:
7

In [174]:
len(adjvocab)


Out[174]:
7335

In [175]:
import itertools
Xarray = []
for i in nbdata: # into a review
    Xarraypre = " ".join(list(itertools.chain.from_iterable(i)))
    Xarray.append(Xarraypre)

Let's explore how many of our movies made gross sales above average, and how many had a value below average


In [59]:
plt.hist(dftouse.adj_gross_bin)
plt.title("Gross Above Mean (1) vs. Gross Below Mean (0)")


Out[59]:
<matplotlib.text.Text at 0x10de09f50>

Turns out we have more movies below the mean than above, which makes a lot of sense, since there are only very few blockbusters, and they bring the mean to a higher value than it would have been without them.


In [176]:
# making the response array based off of the sentiment dictionary 'happiness' there is valence_avg and valence_sum
resparray = []
for index, row in maas_IMDB.iterrows():
    if row.valence_avg > 0: # need to make it binomial because that's how the calibration/cv score works
        resparray.append(1)
    else: 
        resparray.append(0)

In [177]:
print  len(Xarray), len(resparray)
print Xarray[0]


4111 4111
good second love-story romantic second annoying impressive bad great glad half-good suprised worst wonderful talented crummy single possible mere

In [178]:
from sklearn.cross_validation import train_test_split
itrain, itest = train_test_split(xrange(len(Xarray)), train_size=0.7)
mask=np.ones(len(Xarray), dtype='int')
mask[itrain]=1
mask[itest]=0
mask = (mask==1)

In [179]:
X=np.array(Xarray)
y=np.array(resparray)

In [180]:
y


Out[180]:
array([1, 1, 1, ..., 1, 0, 1])

In [181]:
def make_xy(X_col, y_col, vectorizer):
    X = vectorizer.fit_transform(X_col)
    y = y_col
    return X, y

In [182]:
"""
Function
--------
log_likelihood

Compute the log likelihood of a dataset according to 
a Naive Bayes classifier. 
The Log Likelihood is defined by

L = Sum_positive(logP(positive)) + Sum_negative(logP(negative))

Where Sum_positive indicates a sum over all positive reviews, 
and Sum_negative indicates a sum over negative reviews
    
Parameters
----------
clf : Naive Bayes classifier
x : (nexample, nfeature) array
    The input data
y : (nexample) integer array
    Whether each review is positive
"""
def log_likelihood(clf, x, y):
    prob = clf.predict_log_proba(x)
    neg = y == 0
    pos = ~neg
    return prob[neg, 0].sum() + prob[pos, 1].sum()

In [183]:
from sklearn.cross_validation import KFold

def cv_score(clf, x, y, score_func, nfold=5):
    """
    Uses 5-fold cross validation to estimate a score of a classifier
    
    Inputs
    ------
    clf : Classifier object
    x : Input feature vector
    y : Input class labels
    score_func : Function like log_likelihood, that takes (clf, x, y) as input,
                 and returns a score
                 
    Returns
    -------
    The average score obtained by splitting (x, y) into 5 folds of training and 
    test sets, fitting on the training set, and evaluating score_func on the test set
    
    Examples
    cv_score(clf, x, y, log_likelihood)
    """
    result = 0
    for train, test in KFold(y.size, nfold): # split data into train/test groups, 5 times
        clf.fit(x[train], y[train]) # fit
        result += score_func(clf, x[test], y[test]) # evaluate score function on held-out data
    return result / nfold # average

In [184]:
def calibration_plot(clf, xtest, ytest):
    prob = clf.predict_proba(xtest)[:, 1]
    outcome = ytest
    data = pd.DataFrame(dict(prob=prob, outcome=outcome))

    #group outcomes into bins of similar probability
    bins = np.linspace(0, 1, 20)
    cuts = pd.cut(prob, bins)
    binwidth = bins[1] - bins[0]
    
    #freshness ratio and number of examples in each bin
    cal = data.groupby(cuts).outcome.agg(['mean', 'count'])
    cal['pmid'] = (bins[:-1] + bins[1:]) / 2
    cal['sig'] = np.sqrt(cal.pmid * (1 - cal.pmid) / cal['count'])
        
    #the calibration plot
    ax = plt.subplot2grid((3, 1), (0, 0), rowspan=2)
    p = plt.errorbar(cal.pmid, cal['mean'], cal['sig'])
    plt.plot(cal.pmid, cal.pmid, linestyle='--', lw=1, color='k')
    plt.ylabel("Empirical P(+)")
    
    #the distribution of P(+)
    ax = plt.subplot2grid((3, 1), (2, 0), sharex=ax)
    
    plt.bar(left=cal.pmid - binwidth / 2, height=cal['count'],
            width=.95 * (bins[1] - bins[0]),
            fc=p[0].get_color())
    
    plt.xlabel("Predicted P(+)")
    plt.ylabel("Number")

In [185]:
from sklearn.feature_extraction.text import CountVectorizer
from sklearn.naive_bayes import MultinomialNB

In [186]:
#the grid of parameters to search over
alphas = [0, .1, 1, 5, 10, 50]
min_dfs = [1e-5, 1e-4, 1e-3, 1e-2, 1e-1]

#Find the best value for alpha and min_df, and the best classifier
best_alpha = None
best_min_df = None
maxscore = -np.inf

for alpha in alphas:
    for min_df in min_dfs:         
        vectorizer = CountVectorizer(vocabulary =adjvocab, min_df = min_df)       
        Xthis, Ythis = make_xy(X[mask], y[mask], vectorizer)
        clf = MultinomialNB(alpha=alpha)
        cvscore = cv_score(clf, Xthis, Ythis, log_likelihood)
        if cvscore > maxscore:
            maxscore = cvscore
            best_alpha, best_min_df = alpha, min_df

In [187]:
print "alpha: %f" % best_alpha
print "min_df: %f" % best_min_df


alpha: 0.100000
min_df: 0.000010

In [188]:
vectorizer = CountVectorizer(vocabulary =adjvocab, min_df=best_min_df)
Xnew, Ynew = make_xy(X,y, vectorizer)
xtrain, xtest, ytrain, ytest = train_test_split(Xnew, Ynew)
clf = MultinomialNB(alpha=best_alpha).fit(xtrain, ytrain)

training_accuracy = clf.score(xtrain, ytrain)
test_accuracy = clf.score(xtest, ytest)

print "Accuracy on training data: %0.2f" % (training_accuracy)
print "Accuracy on test data:     %0.2f" % (test_accuracy)

calibration_plot(clf, xtest, ytest)


Accuracy on training data: 0.97
Accuracy on test data:     0.91

4. Putting the topics and sentiment analyses together


In [189]:
vectorizer_alladj = CountVectorizer(min_df=best_min_df,vocabulary = adjvocab)
X_alladj, Y_alladj = make_xy(X[mask],y[mask], vectorizer_alladj)
clf_alladj = MultinomialNB(alpha=best_alpha).fit(X_alladj, Y_alladj)

logpositives = dict(zip(vectorizer_alladj.get_feature_names(),clf_alladj.feature_log_prob_[0]))
lognegatives = dict(zip(vectorizer_alladj.get_feature_names(),clf_alladj.feature_log_prob_[1]))

In [190]:
def calc_pplus(adjlist, lp, ln, pp,pn):
    sgivenpos = 0
    sgivenneg = 0
    for adj in adjlist:
        sgivenpos += lp[adj]
        sgivenneg += ln[adj]
    return(np.exp(sgivenpos)*pp)/(np.exp(sgivenpos)*pp + np.exp(sgivenneg)*pn)

In [191]:
reviews=[]
for index, row in maas_IMDB.iterrows():
    reviews.append(row.movie_id)

In [192]:
reviews


Out[192]:
[10027.0,
 10028.0,
 10037.0,
 11015.0,
 10544.0,
 10714.0,
 10715.0,
 10716.0,
 10717.0,
 10718.0,
 10719.0,
 10753.0,
 10754.0,
 10755.0,
 11016.0,
 10756.0,
 10757.0,
 10758.0,
 10759.0,
 10760.0,
 10775.0,
 10776.0,
 10777.0,
 10778.0,
 10779.0,
 11017.0,
 10780.0,
 10781.0,
 10782.0,
 10783.0,
 10784.0,
 10785.0,
 10786.0,
 10787.0,
 10788.0,
 10794.0,
 11018.0,
 10795.0,
 10796.0,
 10797.0,
 10798.0,
 10799.0,
 10800.0,
 10801.0,
 10802.0,
 10803.0,
 10804.0,
 11019.0,
 10805.0,
 10806.0,
 10807.0,
 10808.0,
 10809.0,
 10810.0,
 10811.0,
 10812.0,
 10826.0,
 10827.0,
 11020.0,
 10828.0,
 10829.0,
 10830.0,
 10831.0,
 10832.0,
 10833.0,
 10834.0,
 10835.0,
 10836.0,
 10837.0,
 11021.0,
 10838.0,
 10902.0,
 10903.0,
 10904.0,
 10905.0,
 10906.0,
 10907.0,
 10908.0,
 10909.0,
 10910.0,
 11022.0,
 10911.0,
 10912.0,
 10913.0,
 10914.0,
 11035.0,
 11088.0,
 11089.0,
 11090.0,
 11091.0,
 11092.0,
 11023.0,
 11093.0,
 11118.0,
 11119.0,
 11120.0,
 11158.0,
 11159.0,
 11160.0,
 11161.0,
 11162.0,
 11163.0,
 11024.0,
 11164.0,
 11165.0,
 11166.0,
 11167.0,
 11168.0,
 11240.0,
 11241.0,
 11242.0,
 11243.0,
 11244.0,
 10038.0,
 11025.0,
 11245.0,
 11246.0,
 11247.0,
 11248.0,
 11249.0,
 11250.0,
 11251.0,
 11252.0,
 11253.0,
 11254.0,
 11026.0,
 11255.0,
 11256.0,
 11257.0,
 11258.0,
 11307.0,
 11308.0,
 11309.0,
 11337.0,
 11338.0,
 11393.0,
 11027.0,
 11394.0,
 11395.0,
 11527.0,
 11532.0,
 11649.0,
 11650.0,
 11651.0,
 11652.0,
 11653.0,
 11654.0,
 11028.0,
 11655.0,
 11656.0,
 11657.0,
 11658.0,
 11659.0,
 11660.0,
 11661.0,
 11662.0,
 11663.0,
 11677.0,
 11029.0,
 11678.0,
 11679.0,
 11680.0,
 11681.0,
 11682.0,
 11683.0,
 11684.0,
 11685.0,
 11686.0,
 11687.0,
 11030.0,
 11688.0,
 11689.0,
 11690.0,
 11744.0,
 11767.0,
 11768.0,
 11769.0,
 11827.0,
 11828.0,
 11829.0,
 11031.0,
 11830.0,
 11831.0,
 11832.0,
 11833.0,
 11834.0,
 11835.0,
 11836.0,
 11837.0,
 11861.0,
 11862.0,
 11032.0,
 11863.0,
 11864.0,
 11920.0,
 11968.0,
 11969.0,
 11970.0,
 11971.0,
 12040.0,
 12041.0,
 12042.0,
 11033.0,
 12043.0,
 12044.0,
 12045.0,
 12046.0,
 12047.0,
 12051.0,
 12052.0,
 12053.0,
 12054.0,
 12136.0,
 11195.0,
 12137.0,
 12138.0,
 12139.0,
 12184.0,
 12185.0,
 12186.0,
 12187.0,
 12188.0,
 12189.0,
 12190.0,
 10039.0,
 11196.0,
 12191.0,
 12192.0,
 12193.0,
 12234.0,
 12235.0,
 12236.0,
 12264.0,
 12265.0,
 12306.0,
 12307.0,
 11197.0,
 12308.0,
 12309.0,
 12310.0,
 12311.0,
 12312.0,
 12313.0,
 12314.0,
 12315.0,
 12316.0,
 12332.0,
 11198.0,
 12333.0,
 12334.0,
 12335.0,
 12346.0,
 12347.0,
 12348.0,
 12349.0,
 12350.0,
 12351.0,
 12352.0,
 11199.0,
 12353.0,
 12354.0,
 12355.0,
 12356.0,
 12357.0,
 12358.0,
 12377.0,
 12378.0,
 12379.0,
 12380.0,
 11200.0,
 12405.0,
 12406.0,
 12425.0,
 12426.0,
 12427.0,
 12428.0,
 12429.0,
 12430.0,
 12431.0,
 12432.0,
 11201.0,
 12433.0,
 12434.0,
 12435.0,
 12436.0,
 12437.0,
 12438.0,
 12439.0,
 12458.0,
 12459.0,
 12460.0,
 11202.0,
 12461.0,
 12462.0,
 12463.0,
 12464.0,
 12465.0,
 12466.0,
 12467.0,
 12468.0,
 12469.0,
 12470.0,
 11203.0,
 12471.0,
 12498.0,
 12499.0,
 7455.0,
 7456.0,
 7457.0,
 7458.0,
 7459.0,
 7460.0,
 7461.0,
 11204.0,
 7462.0,
 7463.0,
 7464.0,
 7465.0,
 7466.0,
 7467.0,
 7468.0,
 7477.0,
 7478.0,
 7479.0,
 11418.0,
 7480.0,
 7481.0,
 7482.0,
 7483.0,
 7484.0,
 7485.0,
 7486.0,
 7487.0,
 7488.0,
 7496.0,
 10040.0,
 11419.0,
 7497.0,
 7498.0,
 7499.0,
 7500.0,
 7501.0,
 7502.0,
 7503.0,
 7504.0,
 7505.0,
 7506.0,
 11420.0,
 7507.0,
 7508.0,
 7509.0,
 7510.0,
 7511.0,
 7512.0,
 7513.0,
 7734.0,
 7735.0,
 7736.0,
 11421.0,
 7737.0,
 7738.0,
 7739.0,
 7740.0,
 7741.0,
 7742.0,
 7743.0,
 7744.0,
 7768.0,
 7769.0,
 11422.0,
 7770.0,
 7771.0,
 7772.0,
 7773.0,
 7774.0,
 7778.0,
 7779.0,
 7780.0,
 7781.0,
 7782.0,
 11423.0,
 7783.0,
 7784.0,
 7812.0,
 7813.0,
 7814.0,
 7815.0,
 7816.0,
 7817.0,
 7818.0,
 7819.0,
 11424.0,
 7820.0,
 7821.0,
 7822.0,
 7823.0,
 7824.0,
 7825.0,
 7826.0,
 7827.0,
 7911.0,
 7912.0,
 11425.0,
 7913.0,
 7914.0,
 7915.0,
 7916.0,
 7980.0,
 7981.0,
 7982.0,
 8092.0,
 8093.0,
 8094.0,
 11426.0,
 8095.0,
 8096.0,
 8097.0,
 8098.0,
 8099.0,
 8100.0,
 8185.0,
 8186.0,
 8187.0,
 8188.0,
 11427.0,
 8189.0,
 8190.0,
 8191.0,
 8192.0,
 8193.0,
 8194.0,
 8195.0,
 8196.0,
 8197.0,
 8209.0,
 11428.0,
 8210.0,
 8211.0,
 8212.0,
 8265.0,
 8266.0,
 8267.0,
 8268.0,
 8338.0,
 8409.0,
 8410.0,
 10041.0,
 11429.0,
 8411.0,
 8412.0,
 8413.0,
 8414.0,
 8415.0,
 8416.0,
 8417.0,
 8418.0,
 8419.0,
 8451.0,
 11430.0,
 8586.0,
 8587.0,
 8588.0,
 8589.0,
 8590.0,
 8591.0,
 8592.0,
 8593.0,
 8666.0,
 8667.0,
 11431.0,
 8728.0,
 8729.0,
 8730.0,
 8776.0,
 8777.0,
 8778.0,
 8779.0,
 8780.0,
 8781.0,
 8782.0,
 11432.0,
 8783.0,
 8784.0,
 8785.0,
 8786.0,
 8787.0,
 8788.0,
 8804.0,
 8805.0,
 8806.0,
 8871.0,
 11617.0,
 8872.0,
 8873.0,
 8874.0,
 8875.0,
 8876.0,
 8877.0,
 9026.0,
 9027.0,
 9028.0,
 9029.0,
 11618.0,
 9030.0,
 9031.0,
 9041.0,
 9042.0,
 9043.0,
 9044.0,
 9045.0,
 9046.0,
 9415.0,
 9521.0,
 11619.0,
 9522.0,
 9523.0,
 9623.0,
 9624.0,
 9625.0,
 9626.0,
 9627.0,
 9628.0,
 9629.0,
 9630.0,
 11620.0,
 9631.0,
 9752.0,
 9788.0,
 9789.0,
 9790.0,
 9791.0,
 9844.0,
 9845.0,
 9970.0,
 9971.0,
 11621.0,
 9972.0,
 9973.0,
 9974.0,
 9975.0,
 9976.0,
 9977.0,
 0.0,
 10113.0,
 10114.0,
 10115.0,
 11622.0,
 10116.0,
 10117.0,
 10118.0,
 10119.0,
 10120.0,
 10121.0,
 10122.0,
 10123.0,
 10124.0,
 10125.0,
 10042.0,
 11623.0,
 10126.0,
 10127.0,
 10128.0,
 10129.0,
 10130.0,
 10131.0,
 10132.0,
 10133.0,
 10134.0,
 10135.0,
 11624.0,
 10136.0,
 10137.0,
 10138.0,
 10876.0,
 10877.0,
 10878.0,
 10879.0,
 10880.0,
 10881.0,
 10882.0,
 11625.0,
 10883.0,
 10884.0,
 10885.0,
 10886.0,
 10887.0,
 10888.0,
 10889.0,
 10890.0,
 10891.0,
 10892.0,
 11626.0,
 10893.0,
 10894.0,
 10895.0,
 10896.0,
 10897.0,
 10900.0,
 10901.0,
 10902.0,
 10903.0,
 10904.0,
 11627.0,
 10905.0,
 10906.0,
 10907.0,
 10908.0,
 10909.0,
 10910.0,
 10911.0,
 10912.0,
 10913.0,
 10914.0,
 11628.0,
 10915.0,
 10916.0,
 10917.0,
 10918.0,
 10919.0,
 10920.0,
 10921.0,
 10922.0,
 10.0,
 11374.0,
 11629.0,
 11375.0,
 11376.0,
 11377.0,
 11378.0,
 11379.0,
 11380.0,
 11381.0,
 11382.0,
 11383.0,
 11384.0,
 11630.0,
 11385.0,
 11386.0,
 11387.0,
 11388.0,
 11389.0,
 11390.0,
 11391.0,
 11392.0,
 11393.0,
 11394.0,
 11631.0,
 11395.0,
 11396.0,
 11397.0,
 11398.0,
 11399.0,
 11400.0,
 11401.0,
 11402.0,
 11403.0,
 11404.0,
 11632.0,
 11405.0,
 11406.0,
 11407.0,
 11408.0,
 11409.0,
 11410.0,
 11411.0,
 11412.0,
 11413.0,
 11414.0,
 10043.0,
 11633.0,
 11415.0,
 11416.0,
 11417.0,
 11418.0,
 11419.0,
 11420.0,
 11467.0,
 11468.0,
 11469.0,
 11470.0,
 11634.0,
 11471.0,
 11472.0,
 11640.0,
 11641.0,
 11642.0,
 11643.0,
 11644.0,
 11645.0,
 11646.0,
 11647.0,
 11635.0,
 11648.0,
 11649.0,
 11650.0,
 11651.0,
 11652.0,
 11653.0,
 11654.0,
 11655.0,
 11656.0,
 11657.0,
 11636.0,
 11658.0,
 11659.0,
 11660.0,
 11661.0,
 11662.0,
 11663.0,
 11664.0,
 11665.0,
 11666.0,
 11667.0,
 11637.0,
 11668.0,
 11669.0,
 1170.0,
 1171.0,
 1172.0,
 1173.0,
 1174.0,
 1175.0,
 1176.0,
 1177.0,
 11638.0,
 1178.0,
 1179.0,
 1180.0,
 1181.0,
 1182.0,
 11909.0,
 11910.0,
 11911.0,
 11912.0,
 11913.0,
 11639.0,
 11914.0,
 11915.0,
 11916.0,
 11917.0,
 11918.0,
 11919.0,
 11920.0,
 11921.0,
 11922.0,
 11923.0,
 11640.0,
 11924.0,
 11925.0,
 11926.0,
 11927.0,
 11928.0,
 11929.0,
 11930.0,
 11931.0,
 11932.0,
 11933.0,
 11685.0,
 11934.0,
 11935.0,
 11936.0,
 11937.0,
 11938.0,
 11.0,
 12177.0,
 12178.0,
 12179.0,
 12180.0,
 11686.0,
 12181.0,
 12182.0,
 12183.0,
 12184.0,
 12185.0,
 12186.0,
 12187.0,
 12188.0,
 12189.0,
 12190.0,
 10044.0,
 11687.0,
 12191.0,
 12192.0,
 12193.0,
 12194.0,
 12195.0,
 12196.0,
 12197.0,
 1291.0,
 1292.0,
 12.0,
 11688.0,
 1327.0,
 1328.0,
 1329.0,
 1330.0,
 1331.0,
 1332.0,
 1333.0,
 1334.0,
 13.0,
 14.0,
 11689.0,
 15.0,
 1620.0,
 1621.0,
 1622.0,
 1623.0,
 1624.0,
 1625.0,
 1626.0,
 1627.0,
 1628.0,
 11690.0,
 1629.0,
 1630.0,
 1631.0,
 1632.0,
 1633.0,
 1634.0,
 1635.0,
 1697.0,
 1698.0,
 1699.0,
 11691.0,
 16.0,
 1700.0,
 1701.0,
 1702.0,
 1703.0,
 1704.0,
 1705.0,
 1826.0,
 1827.0,
 1828.0,
 11692.0,
 1829.0,
 1830.0,
 1831.0,
 1832.0,
 1833.0,
 1834.0,
 1835.0,
 1836.0,
 1837.0,
 1838.0,
 11693.0,
 1839.0,
 1840.0,
 1841.0,
 1842.0,
 1843.0,
 1844.0,
 1845.0,
 1846.0,
 1847.0,
 1848.0,
 11694.0,
 1849.0,
 1850.0,
 1851.0,
 1852.0,
 1853.0,
 1854.0,
 1855.0,
 1.0,
 2038.0,
 2039.0,
 11807.0,
 2040.0,
 2041.0,
 2042.0,
 2043.0,
 2044.0,
 2045.0,
 2046.0,
 2047.0,
 2048.0,
 2049.0,
 11808.0,
 2050.0,
 2051.0,
 2052.0,
 2053.0,
 2054.0,
 2055.0,
 2056.0,
 2057.0,
 2058.0,
 2059.0,
 10045.0,
 11809.0,
 2060.0,
 2061.0,
 2062.0,
 2063.0,
 2064.0,
 2065.0,
 2066.0,
 2067.0,
 2184.0,
 2185.0,
 11810.0,
 2186.0,
 2187.0,
 2188.0,
 2189.0,
 2190.0,
 2191.0,
 2192.0,
 2193.0,
 2194.0,
 2195.0,
 11811.0,
 2196.0,
 2197.0,
 2198.0,
 2199.0,
 2200.0,
 2201.0,
 2202.0,
 2203.0,
 2204.0,
 2205.0,
 11812.0,
 2206.0,
 2207.0,
 2277.0,
 2278.0,
 2279.0,
 2280.0,
 2281.0,
 2282.0,
 2283.0,
 2284.0,
 11813.0,
 2285.0,
 2286.0,
 2287.0,
 2288.0,
 2289.0,
 2290.0,
 2291.0,
 2292.0,
 2293.0,
 2294.0,
 11814.0,
 2295.0,
 2296.0,
 2307.0,
 2308.0,
 2309.0,
 2310.0,
 2311.0,
 2312.0,
 2313.0,
 2314.0,
 11815.0,
 2315.0,
 2316.0,
 2317.0,
 2318.0,
 2319.0,
 2320.0,
 2321.0,
 2322.0,
 2323.0,
 2324.0,
 11816.0,
 2325.0,
 2326.0,
 2327.0,
 2328.0,
 2329.0,
 2330.0,
 2331.0,
 2332.0,
 2333.0,
 2334.0,
 11817.0,
 2335.0,
 2336.0,
 2378.0,
 2837.0,
 2838.0,
 2839.0,
 2840.0,
 2841.0,
 2842.0,
 2843.0,
 11818.0,
 2844.0,
 2845.0,
 2846.0,
 2847.0,
 2848.0,
 2849.0,
 2850.0,
 2851.0,
 2852.0,
 ...]

In [193]:
len(review_parts),len(reviews)


Out[193]:
(4111, 4111)

In [194]:
def choose_topic(ldamodel, bow):
    tee = lda2.get_document_topics(bow)
    if len(tee)==2:
        t1,t2=tee
        if t2[1] >= t1[1]:#get higher probability topic
            topicis=t2[0]
        else:
            topicis=t1[0]
    elif len(tee)==1:#if only one was provided its very high probability. Take it
        teetuple=tee[0]
        topicis=teetuple[0]
    return topicis

In [195]:
priorp = np.mean(resparray)
priorn = 1 - priorp
priorp, priorn


Out[195]:
(0.92897105327171003, 0.071028946728289966)

In [196]:
counter=0
reviewdict={}
for i, rid in enumerate(reviews):
    rlist=[]
    nlist, alist = review_parts[i]
    ln=len(nlist)
    localbow=corpus[counter:counter+ln]
    for bow, adj, noun in zip(localbow, alist, nlist):
        doc=" ".join([id2word[e[0]] for e in bow])
        pplus=calc_pplus(adj, logpositives, lognegatives, priorp, priorn)
        topicis=choose_topic(lda2, bow)
        ldict={"topic": topicis, 'pplus':pplus}
        rlist.append(ldict)
    reviewdict[rid]=rlist
    counter=counter+ln

In [197]:
list_of_dicts=[]
for index, row in maas_IMDB.iterrows():
    revs=reviewdict[row.movie_id]
    for r in revs:
        r2=r.copy()
        r2['movie_id']=row.movie_name
        r2['url']=row.url
        r2['review_id']=row.movie_id
        r2['stars']=row.stars
        r2['valence_avg']=row.valence_avg
        r2['valence_sum']=row.valence_sum
        list_of_dicts.append(r2)

In [198]:
completedf=pd.DataFrame(list_of_dicts)
completedf.head()


Out[198]:
movie_id pplus review_id stars topic url valence_avg valence_sum
0 Titanic 0.807193 10027 7 0 http://www.imdb.com/title/tt0120338/usercommen... 0.47976 38.380826
1 Titanic 0.935017 10027 7 1 http://www.imdb.com/title/tt0120338/usercommen... 0.47976 38.380826
2 Titanic 0.891101 10027 7 0 http://www.imdb.com/title/tt0120338/usercommen... 0.47976 38.380826
3 Titanic 0.182409 10027 7 0 http://www.imdb.com/title/tt0120338/usercommen... 0.47976 38.380826
4 Titanic 0.828186 10027 7 0 http://www.imdb.com/title/tt0120338/usercommen... 0.47976 38.380826

In [199]:
completedf.shape


Out[199]:
(2815, 8)

5. Estimate the overall mean for each movie on each topic


In [38]:
def get_stats(group):
    min_pplus = group.pplus.min()
    max_pplus = group.pplus.max()
    rid = group.movie_id.unique()
    valence_avg = group.valence_avg.mean()
    valence_sum = group.valence_sum.mean()
    count = group.topic.count()
    if count == 1: 
        varj = 0
    else: 
        varj = group.pplus.var(ddof=1)
    mean_pplus = group.pplus.mean()
    stars = group.stars.mean()
    return pd.DataFrame({'min': min_pplus, 'max':max_pplus ,'valence_avg': valence_avg,'valence_sum':valence_sum, 
                         'count': count,'var': varj, 'mean': mean_pplus, 'stars': stars}, index=rid)

In [39]:
%%time
dftouse=completedf.groupby(['review_id', 'topic']).apply(get_stats).reset_index()


---------------------------------------------------------------------------
KeyError                                  Traceback (most recent call last)
<ipython-input-39-70e8d7fd1f51> in <module>()
----> 1 get_ipython().run_cell_magic(u'time', u'', u"dftouse=completedf.groupby(['review_id', 'topic']).apply(get_stats).reset_index()")

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/core/interactiveshell.pyc in run_cell_magic(self, magic_name, line, cell)
   2262             magic_arg_s = self.var_expand(line, stack_depth)
   2263             with self.builtin_trap:
-> 2264                 result = fn(magic_arg_s, cell)
   2265             return result
   2266 

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/core/magics/execution.pyc in time(self, line, cell, local_ns)

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/core/magic.pyc in <lambda>(f, *a, **k)
    191     # but it's overkill for just that one bit of state.
    192     def magic_deco(arg):
--> 193         call = lambda f, *a, **k: f(*a, **k)
    194 
    195         if callable(arg):

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/core/magics/execution.pyc in time(self, line, cell, local_ns)
   1164         else:
   1165             st = clock2()
-> 1166             exec(code, glob, local_ns)
   1167             end = clock2()
   1168             out = None

<timed exec> in <module>()

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/pandas/core/generic.pyc in groupby(self, by, axis, level, as_index, sort, group_keys, squeeze)
   3157         axis = self._get_axis_number(axis)
   3158         return groupby(self, by=by, axis=axis, level=level, as_index=as_index,
-> 3159                        sort=sort, group_keys=group_keys, squeeze=squeeze)
   3160 
   3161     def asfreq(self, freq, method=None, how=None, normalize=False):

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/pandas/core/groupby.pyc in groupby(obj, by, **kwds)
   1197         raise TypeError('invalid type: %s' % type(obj))
   1198 
-> 1199     return klass(obj, by, **kwds)
   1200 
   1201 

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/pandas/core/groupby.pyc in __init__(self, obj, keys, axis, level, grouper, exclusions, selection, as_index, sort, group_keys, squeeze)
    386         if grouper is None:
    387             grouper, exclusions, obj = _get_grouper(obj, keys, axis=axis,
--> 388                                                     level=level, sort=sort)
    389 
    390         self.obj = obj

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/pandas/core/groupby.pyc in _get_grouper(obj, key, axis, level, sort)
   2146 
   2147         elif is_in_axis(gpr):  # df.groupby('name')
-> 2148             in_axis, name, gpr = True, gpr, obj[gpr]
   2149             exclusions.append(name)
   2150 

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/pandas/core/frame.pyc in __getitem__(self, key)
   1795             return self._getitem_multilevel(key)
   1796         else:
-> 1797             return self._getitem_column(key)
   1798 
   1799     def _getitem_column(self, key):

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/pandas/core/frame.pyc in _getitem_column(self, key)
   1802         # get column
   1803         if self.columns.is_unique:
-> 1804             return self._get_item_cache(key)
   1805 
   1806         # duplicate columns & possible reduce dimensionaility

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/pandas/core/generic.pyc in _get_item_cache(self, item)
   1082         res = cache.get(item)
   1083         if res is None:
-> 1084             values = self._data.get(item)
   1085             res = self._box_item_values(item, values)
   1086             cache[item] = res

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/pandas/core/internals.pyc in get(self, item, fastpath)
   2849 
   2850             if not isnull(item):
-> 2851                 loc = self.items.get_loc(item)
   2852             else:
   2853                 indexer = np.arange(len(self.items))[isnull(self.items)]

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/pandas/core/index.pyc in get_loc(self, key, method)
   1570         """
   1571         if method is None:
-> 1572             return self._engine.get_loc(_values_from_object(key))
   1573 
   1574         indexer = self.get_indexer([key], method=method)

pandas/index.pyx in pandas.index.IndexEngine.get_loc (pandas/index.c:3824)()

pandas/index.pyx in pandas.index.IndexEngine.get_loc (pandas/index.c:3704)()

pandas/hashtable.pyx in pandas.hashtable.PyObjectHashTable.get_item (pandas/hashtable.c:12280)()

pandas/hashtable.pyx in pandas.hashtable.PyObjectHashTable.get_item (pandas/hashtable.c:12231)()

KeyError: 'review_id'

In [202]:
print dftouse.shape
dftouse.head()


(699, 11)
Out[202]:
review_id topic level_2 count max mean min stars valence_avg valence_sum var
0 7455 0 Corky Romano 1 0.951056 0.951056 0.951056 3 0.040475 0.566644 0.000000
1 7455 1 Corky Romano 1 0.935816 0.935816 0.935816 3 0.040475 0.566644 0.000000
2 7456 0 Corky Romano 6 0.973302 0.758510 0.044043 2 0.196665 8.259933 0.125997
3 7457 0 Corky Romano 4 0.946638 0.844130 0.690218 4 0.218332 9.169933 0.013005
4 7457 1 Corky Romano 1 0.968079 0.968079 0.968079 4 0.218332 9.169933 0.000000

In [203]:
dftouse[dftouse.review_id==10037]


Out[203]:
review_id topic level_2 count max mean min stars valence_avg valence_sum var
264 10037 0 Titanic 5 0.876692 0.635052 0.052174 9 0.700832 39.246578 0.124518
265 10037 1 Titanic 1 0.674595 0.674595 0.674595 9 0.700832 39.246578 0.000000

Using the NLTK library


In [204]:
! pip install nltk


Requirement already satisfied (use --upgrade to upgrade): nltk in /Users/alpkaancelik/anaconda/lib/python2.7/site-packages

In [205]:
import nltk
from nltk.corpus import sentiwordnet as swn

In [208]:
happy = swn.senti_synset('happy.n.03')
print(happy)


---------------------------------------------------------------------------
LookupError                               Traceback (most recent call last)
<ipython-input-208-f3487f8e9748> in <module>()
----> 1 happy = swn.senti_synset('happy.n.03')
      2 print(happy)

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/nltk/corpus/util.pyc in __getattr__(self, attr)
     97             raise AttributeError("LazyCorpusLoader object has no attribute '__bases__'")
     98 
---> 99         self.__load()
    100         # This looks circular, but its not, since __load() changes our
    101         # __class__ to something new:

/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/nltk/corpus/util.pyc in __load(self)
     62             except LookupError as e:
     63                 try: root = nltk.data.find('corpora/%s' % zip_name)
---> 64                 except LookupError: raise e
     65 
     66         # Load the corpus.

LookupError: 
**********************************************************************
  Resource u'corpora/sentiwordnet' not found.  Please use the NLTK
  Downloader to obtain the resource:  >>> nltk.download()
  Searched in:
    - '/Users/alpkaancelik/nltk_data'
    - '/usr/share/nltk_data'
    - '/usr/local/share/nltk_data'
    - '/usr/lib/nltk_data'
    - '/usr/local/lib/nltk_data'
**********************************************************************

In [210]:
type(swn)


Out[210]:
nltk.corpus.util.LazyCorpusLoader

Classification

Let's try classifying some stuff!

Here, we attempt to see if we can get better predictive power using some of the classifiers we learnt in class.

List of classifiers we are going to be trying:

  1. LogisticRegression() over 2 variables 'abs_valence_avg','total_theaters'
  2. LogisticRegression() over 8 variables stored in Xnames
  3. SVC(kernel="linear") over 2 variables 'abs_valence_avg','total_theaters'
  4. SVC(kernel="linear") over 8 variables stored in Xnames
  5. Tree() over 2 variables 'abs_valence_avg','total_theaters'
  6. Tree() over 8 variables stored in Xnames
  7. Forest() over 2 variables 'abs_valence_avg','total_theaters'
  8. Forest() over 8 variables stored in Xnames
  9. AdaBoost() over 2 variables 'abs_valence_avg','total_theaters'
  10. AdaBoost() over 8 variables stored in Xnames
  11. GB() over 2 variables 'abs_valence_avg','total_theaters'
  12. GB() over 8 variables stored in Xnames

In [79]:
from sklearn.svm import LinearSVC
from sklearn.grid_search import GridSearchCV
from sklearn.cross_validation import train_test_split
from sklearn.metrics import confusion_matrix
from matplotlib.colors import ListedColormap
from sklearn.linear_model import LogisticRegression


def cv_optimize(clf, parameters, X, y, n_jobs=1, n_folds=5, score_func=None):
    if score_func:
        gs = GridSearchCV(clf, param_grid=parameters, cv=n_folds, n_jobs=n_jobs, scoring=score_func)
    else:
        gs = GridSearchCV(clf, param_grid=parameters, n_jobs=n_jobs, cv=n_folds)
    gs.fit(X, y)
    print "BEST", gs.best_params_, gs.best_score_, gs.grid_scores_
    best = gs.best_estimator_
    return best
def do_classify(clf, parameters, indf, featurenames, targetname, target1val, mask=None, reuse_split=None, score_func=None, n_folds=5, n_jobs=1):
    subdf=indf[featurenames]
    X=subdf.values
    y=(indf[targetname].values==target1val)*1
    if mask !=None:
        print "using mask"
        Xtrain, Xtest, ytrain, ytest = X[mask], X[~mask], y[mask], y[~mask]
    if reuse_split !=None:
        print "using reuse split"
        Xtrain, Xtest, ytrain, ytest = reuse_split['Xtrain'], reuse_split['Xtest'], reuse_split['ytrain'], reuse_split['ytest']
    if parameters:
        clf = cv_optimize(clf, parameters, Xtrain, ytrain, n_jobs=n_jobs, n_folds=n_folds, score_func=score_func)
    clf=clf.fit(Xtrain, ytrain)
    training_accuracy = clf.score(Xtrain, ytrain)
    test_accuracy = clf.score(Xtest, ytest)
    print "############# based on standard predict ################"
    print "Accuracy on training data: %0.2f" % (training_accuracy)
    print "Accuracy on test data:     %0.2f" % (test_accuracy)
    print confusion_matrix(ytest, clf.predict(Xtest))
    print "########################################################"
    return clf, Xtrain, ytrain, Xtest, ytest

In [80]:
cmap_light = ListedColormap(['#FFAAAA', '#AAFFAA', '#AAAAFF'])
cmap_bold = ListedColormap(['#FF0000', '#00FF00', '#0000FF'])
cm = plt.cm.RdBu
cm_bright = ListedColormap(['#FF0000', '#0000FF'])

def points_plot(ax, Xtr, Xte, ytr, yte, clf, mesh=True, colorscale=cmap_light, cdiscrete=cmap_bold, alpha=0.3, psize=10, zfunc=False):
    h = .02
    X=np.concatenate((Xtr, Xte))
    x_min, x_max = X[:, 0].min() - .5, X[:, 0].max() + .5
    y_min, y_max = X[:, 1].min() - .5, X[:, 1].max() + .5
    xx, yy = np.meshgrid(np.linspace(x_min, x_max, 100),
                         np.linspace(y_min, y_max, 100))

    #plt.figure(figsize=(10,6))
    if mesh:
        if zfunc:
            p0 = clf.predict_proba(np.c_[xx.ravel(), yy.ravel()])[:, 0]
            p1 = clf.predict_proba(np.c_[xx.ravel(), yy.ravel()])[:, 1]
            Z=zfunc(p0, p1)
        else:
            Z = clf.predict(np.c_[xx.ravel(), yy.ravel()])
        Z = Z.reshape(xx.shape)
        plt.pcolormesh(xx, yy, Z, cmap=cmap_light, alpha=alpha, axes=ax)
    ax.scatter(Xtr[:, 0], Xtr[:, 1], c=ytr-1, cmap=cmap_bold, s=psize, alpha=alpha,edgecolor="k")
    # and testing points
    yact=clf.predict(Xte)
    ax.scatter(Xte[:, 0], Xte[:, 1], c=yte-1, cmap=cmap_bold, alpha=alpha, marker="s", s=psize+10)
    ax.set_xlim(xx.min(), xx.max())
    ax.set_ylim(yy.min(), yy.max())
    return ax,xx,yy

In [81]:
def points_plot_prob(ax, Xtr, Xte, ytr, yte, clf, colorscale=cmap_light, cdiscrete=cmap_bold, ccolor=cm, psize=10, alpha=0.1, prob=True):
    ax,xx,yy = points_plot(ax, Xtr, Xte, ytr, yte, clf, mesh=False, colorscale=colorscale, cdiscrete=cdiscrete, psize=psize, alpha=alpha) 
    if prob:
        Z = clf.predict_proba(np.c_[xx.ravel(), yy.ravel()])[:, 1]
    else:
        Z = clf.decision_function(np.c_[xx.ravel(), yy.ravel()])
    Z = Z.reshape(xx.shape)
    plt.contourf(xx, yy, Z, cmap=ccolor, alpha=.2, axes=ax)
    cs2 = plt.contour(xx, yy, Z, cmap=ccolor, alpha=.6, axes=ax)
    plt.clabel(cs2, fmt = '%2.1f', colors = 'k', fontsize=14, axes=ax)
    return ax

In [82]:
dftouse.head()


Out[82]:
abs_valence_avg adj_gross adj_gross_bin adj_opening_gross adj_opening_gross_bin n_scorables pct_scorables positive ranking review_count star_avg total_theaters valence_avg valence_sum year
102 Dalmatians 0.435028 9.300887e+07 0 27619626.583993 1 95.20 0.554479 1 38 10 8.30 2704 0.764973 34.991588 2000
13 Going on 30 0.075914 8.720185e+07 0 32079616.730188 1 94.75 0.614963 0 56 4 2.50 3453 0.344982 19.569669 2004
3 Ninjas 0.337339 3.282516e+07 0 6665611.384807 0 107.25 0.647320 0 44 4 1.25 1954 0.235649 26.775243 1992
50 First Dates 0.060371 1.842231e+08 1 60721350.083526 1 60.00 0.600000 0 15 1 3.00 3612 0.390316 14.051372 2004
8MM 0.388165 4.926479e+07 0 19151719.429485 0 241.00 0.626556 0 56 1 1.00 2370 -0.058220 -8.791192 1999

In [89]:
itrain, itest = train_test_split(xrange(dftouse.shape[0]), train_size=0.6)
mask_classify=np.ones(dftouse.shape[0], dtype='int')
mask_classify[itrain]=1
mask_classify[itest]=0
mask_classify = (mask_classify==1)
mask_classify[:10]

Xnames = ['year','total_theaters' ,'star_avg','review_count','positive','n_scorables','pct_scorables','valence_avg']
two_features = ['abs_valence_avg','n_scorables']

clflog1 = LogisticRegression()
parameters_log = {"C": [0.000000001, 0.00000001, 0.000001, 0.00001, 0.0001, 0.001, 0.01, 0.1, 1, 10, 100,]}
clflog1, Xtrain, ytrain, Xtest, ytest=do_classify(clflog1, parameters_log, dftouse, 
                                                 two_features,
                                                 'adj_opening_gross_bin', 1, mask=mask_classify)
Xtr=np.concatenate((Xtrain, Xtest))
plt.figure()
ax=plt.gca()
nonamebob = points_plot(ax, Xtrain, Xtest, ytrain, ytest, clflog1)


using mask
BEST {'C': 1e-09} 0.661616161616 [mean: 0.66162, std: 0.00665, params: {'C': 1e-09}, mean: 0.66162, std: 0.00665, params: {'C': 1e-08}, mean: 0.66162, std: 0.00665, params: {'C': 1e-06}, mean: 0.66162, std: 0.00665, params: {'C': 1e-05}, mean: 0.66162, std: 0.00665, params: {'C': 0.0001}, mean: 0.66162, std: 0.00665, params: {'C': 0.001}, mean: 0.66162, std: 0.00665, params: {'C': 0.01}, mean: 0.66162, std: 0.00665, params: {'C': 0.1}, mean: 0.64141, std: 0.01938, params: {'C': 1}, mean: 0.64646, std: 0.02722, params: {'C': 10}, mean: 0.65152, std: 0.03628, params: {'C': 100}]
############# based on standard predict ################
Accuracy on training data: 0.66
Accuracy on test data:     0.62
[[82  0]
 [51  0]]
########################################################
/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/kernel/__main__.py:22: FutureWarning: comparison to `None` will result in an elementwise object comparison in the future.

In [92]:
plt.figure()
ax=plt.gca()
points_plot(ax, Xtrain, Xtest, ytrain, ytest, clflog1, mesh=False, alpha=0.001);
points_plot_prob(ax, Xtrain, Xtest, ytrain, ytest, clflog1);


/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/matplotlib/collections.py:650: FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison
  if self._edgecolors_original != str('face'):
/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/matplotlib/text.py:52: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
  if rotation in ('horizontal', None):
/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/matplotlib/text.py:54: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
  elif rotation == 'vertical':

In [90]:
plt.hist(clflog1.predict_proba(Xtest)[:,1]*100);



In [93]:
clflog1.score(Xtest, ytest)


Out[93]:
0.61654135338345861

In [95]:
clflog2 = LogisticRegression()
clflog2, Xtrain, ytrain, Xtest, ytest=do_classify(clflog2, parameters_log, dftouse, 
                                                 Xnames,
                                                 'adj_opening_gross_bin', 1, mask=mask_classify)


using mask
BEST {'C': 10} 0.893939393939 [mean: 0.66162, std: 0.00665, params: {'C': 1e-09}, mean: 0.66162, std: 0.00665, params: {'C': 1e-08}, mean: 0.86364, std: 0.04498, params: {'C': 1e-06}, mean: 0.87374, std: 0.03531, params: {'C': 1e-05}, mean: 0.87374, std: 0.03531, params: {'C': 0.0001}, mean: 0.87374, std: 0.03531, params: {'C': 0.001}, mean: 0.88384, std: 0.03313, params: {'C': 0.01}, mean: 0.87879, std: 0.03382, params: {'C': 0.1}, mean: 0.88384, std: 0.03795, params: {'C': 1}, mean: 0.89394, std: 0.02923, params: {'C': 10}, mean: 0.88889, std: 0.02991, params: {'C': 100}]
############# based on standard predict ################
Accuracy on training data: 0.89
Accuracy on test data:     0.83
[[66 16]
 [ 7 44]]
########################################################
/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/kernel/__main__.py:22: FutureWarning: comparison to `None` will result in an elementwise object comparison in the future.

In [96]:
from sklearn.svm import SVC
clfsvm1 = SVC(kernel="linear")
parameters_svc = {"C": [0.001, 0.01, 0.1, 1, 10, 100, 1000]}
clfsvm1, Xtrain, ytrain, Xtest, ytest=do_classify(clfsvm1, parameters_svc, dftouse, 
                                                 two_features,
                                                 'adj_opening_gross_bin', 1, mask=mask_classify)
Xtr=np.concatenate((Xtrain, Xtest))
plt.figure()
ax=plt.gca()
points_plot(ax, Xtrain, Xtest, ytrain, ytest, clfsvm1);


using mask
BEST {'C': 0.001} 0.661616161616 [mean: 0.66162, std: 0.00665, params: {'C': 0.001}, mean: 0.66162, std: 0.00665, params: {'C': 0.01}, mean: 0.66162, std: 0.00665, params: {'C': 0.1}, mean: 0.66162, std: 0.00665, params: {'C': 1}, mean: 0.66162, std: 0.00665, params: {'C': 10}, mean: 0.66162, std: 0.00665, params: {'C': 100}, mean: 0.65152, std: 0.01906, params: {'C': 1000}]
############# based on standard predict ################
Accuracy on training data: 0.66
Accuracy on test data:     0.62
[[82  0]
 [51  0]]
########################################################
/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/kernel/__main__.py:22: FutureWarning: comparison to `None` will result in an elementwise object comparison in the future.

In [97]:
plt.figure()
ax=plt.gca()
points_plot(ax, Xtrain, Xtest, ytrain, ytest, clfsvm1, mesh=False);
points_plot_prob(ax, Xtrain, Xtest, ytrain, ytest, clfsvm1, prob=False);



In [98]:
#From Jake Vanderplas's ESAC notebook
def plot_svc_decision_function(clf, ax=None):
    """Plot the decision function for a 2D SVC"""
    if ax is None:
        ax = plt.gca()
    x = np.linspace(plt.xlim()[0], plt.xlim()[1], 30)
    y = np.linspace(plt.ylim()[0], plt.ylim()[1], 30)
    Y, X = np.meshgrid(y, x)
    P = np.zeros_like(X)
    for i, xi in enumerate(x):
        for j, yj in enumerate(y):
            P[i, j] = clf.decision_function([xi, yj])
    return ax.contour(X, Y, P, colors='k',
                      levels=[-1, 0, 1], alpha=0.5,
                      linestyles=['--', '-', '--'])

In [100]:
plt.figure()
ax=plt.gca()
points_plot(ax, Xtrain, Xtest, ytrain, ytest, clfsvm1);
plot_svc_decision_function(clfsvm1, ax)
ax.scatter(clfsvm1.support_vectors_[:, 0], clfsvm1.support_vectors_[:, 1],s=200, facecolors='none')
plt.ylim([125,225])


Out[100]:
(125, 225)

In [101]:
clfsvm2 = SVC(kernel="linear")
clfsvm2, Xtrain, ytrain, Xtest, ytest=do_classify(clfsvm2, parameters_svc, dftouse, 
                                                 Xnames,
                                                 'adj_opening_gross_bin', 1, mask=mask_classify)


using mask
BEST {'C': 0.01} 0.909090909091 [mean: 0.88384, std: 0.03313, params: {'C': 0.001}, mean: 0.90909, std: 0.03044, params: {'C': 0.01}, mean: 0.90404, std: 0.02501, params: {'C': 0.1}, mean: 0.87879, std: 0.03382, params: {'C': 1}, mean: 0.86869, std: 0.04359, params: {'C': 10}, mean: 0.86364, std: 0.05436, params: {'C': 100}, mean: 0.86364, std: 0.04730, params: {'C': 1000}]
############# based on standard predict ################
Accuracy on training data: 0.91
Accuracy on test data:     0.83
[[67 15]
 [ 8 43]]
########################################################
/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/kernel/__main__.py:22: FutureWarning: comparison to `None` will result in an elementwise object comparison in the future.

In [104]:
def make_roc(name, clf, ytest, xtest, ax=None, labe=5, proba=True, skip=0):
    initial=False
    if not ax:
        ax=plt.gca()
        initial=True
    if proba:
        fpr, tpr, thresholds=roc_curve(ytest, clf.predict_proba(xtest)[:,1])
    else:
        fpr, tpr, thresholds=roc_curve(ytest, clf.decision_function(xtest))
    roc_auc = auc(fpr, tpr)
    if skip:
        l=fpr.shape[0]
        ax.plot(fpr[0:l:skip], tpr[0:l:skip], '.-', alpha=0.3, label='ROC curve for %s (area = %0.2f)' % (name, roc_auc))
    else:
        ax.plot(fpr, tpr, '.-', alpha=0.3, label='ROC curve for %s (area = %0.2f)' % (name, roc_auc))
    label_kwargs = {}
    label_kwargs['bbox'] = dict(
        boxstyle='round,pad=0.3', alpha=0.2,
    )
    for k in xrange(0, fpr.shape[0],labe):
        #from https://gist.github.com/podshumok/c1d1c9394335d86255b8
        threshold = str(np.round(thresholds[k], 2))
        ax.annotate(threshold, (fpr[k], tpr[k]), **label_kwargs)
    if initial:
        ax.plot([0, 1], [0, 1], 'k--')
        ax.set_xlim([0.0, 1.0])
        ax.set_ylim([0.0, 1.05])
        ax.set_xlabel('False Positive Rate')
        ax.set_ylabel('True Positive Rate')
        ax.set_title('ROC')
    ax.legend(loc="lower right")
    return ax

In [107]:
from sklearn.metrics import roc_curve, auc
ax=make_roc("logistic", clflog2, ytest, Xtest, labe=10)



In [109]:
ax=make_roc("svm", clfsvm2, ytest, Xtest, labe=10, proba=False)



In [110]:
from sklearn import tree
clfTree1 = tree.DecisionTreeClassifier()

parameters_tree = {"max_depth": [1, 2, 3, 4, 5, 6, 7], 'min_samples_leaf': [1, 2, 3, 4, 5, 6]}

clfTree1, Xtrain, ytrain, Xtest, ytest=do_classify(clfTree1, parameters_tree, dftouse, 
                                                 two_features,
                                                 'adj_opening_gross_bin', 1, mask=mask_classify)


using mask
BEST {'max_depth': 1, 'min_samples_leaf': 1} 0.656565656566 [mean: 0.65657, std: 0.02499, params: {'max_depth': 1, 'min_samples_leaf': 1}, mean: 0.65657, std: 0.02499, params: {'max_depth': 1, 'min_samples_leaf': 2}, mean: 0.65657, std: 0.02499, params: {'max_depth': 1, 'min_samples_leaf': 3}, mean: 0.65657, std: 0.02499, params: {'max_depth': 1, 'min_samples_leaf': 4}, mean: 0.65657, std: 0.02499, params: {'max_depth': 1, 'min_samples_leaf': 5}, mean: 0.65657, std: 0.02499, params: {'max_depth': 1, 'min_samples_leaf': 6}, mean: 0.65152, std: 0.03358, params: {'max_depth': 2, 'min_samples_leaf': 1}, mean: 0.65152, std: 0.03358, params: {'max_depth': 2, 'min_samples_leaf': 2}, mean: 0.65152, std: 0.03358, params: {'max_depth': 2, 'min_samples_leaf': 3}, mean: 0.64141, std: 0.01386, params: {'max_depth': 2, 'min_samples_leaf': 4}, mean: 0.65657, std: 0.02067, params: {'max_depth': 2, 'min_samples_leaf': 5}, mean: 0.65657, std: 0.02067, params: {'max_depth': 2, 'min_samples_leaf': 6}, mean: 0.64141, std: 0.05527, params: {'max_depth': 3, 'min_samples_leaf': 1}, mean: 0.64141, std: 0.05527, params: {'max_depth': 3, 'min_samples_leaf': 2}, mean: 0.63636, std: 0.05623, params: {'max_depth': 3, 'min_samples_leaf': 3}, mean: 0.63131, std: 0.03708, params: {'max_depth': 3, 'min_samples_leaf': 4}, mean: 0.62626, std: 0.03103, params: {'max_depth': 3, 'min_samples_leaf': 5}, mean: 0.62626, std: 0.03103, params: {'max_depth': 3, 'min_samples_leaf': 6}, mean: 0.64646, std: 0.05474, params: {'max_depth': 4, 'min_samples_leaf': 1}, mean: 0.64141, std: 0.04590, params: {'max_depth': 4, 'min_samples_leaf': 2}, mean: 0.64141, std: 0.03248, params: {'max_depth': 4, 'min_samples_leaf': 3}, mean: 0.62121, std: 0.05127, params: {'max_depth': 4, 'min_samples_leaf': 4}, mean: 0.58586, std: 0.04713, params: {'max_depth': 4, 'min_samples_leaf': 5}, mean: 0.58081, std: 0.04498, params: {'max_depth': 4, 'min_samples_leaf': 6}, mean: 0.62121, std: 0.08576, params: {'max_depth': 5, 'min_samples_leaf': 1}, mean: 0.61616, std: 0.06930, params: {'max_depth': 5, 'min_samples_leaf': 2}, mean: 0.60101, std: 0.03772, params: {'max_depth': 5, 'min_samples_leaf': 3}, mean: 0.58081, std: 0.05662, params: {'max_depth': 5, 'min_samples_leaf': 4}, mean: 0.57576, std: 0.04511, params: {'max_depth': 5, 'min_samples_leaf': 5}, mean: 0.56061, std: 0.05537, params: {'max_depth': 5, 'min_samples_leaf': 6}, mean: 0.63131, std: 0.07104, params: {'max_depth': 6, 'min_samples_leaf': 1}, mean: 0.61616, std: 0.05946, params: {'max_depth': 6, 'min_samples_leaf': 2}, mean: 0.58081, std: 0.05105, params: {'max_depth': 6, 'min_samples_leaf': 3}, mean: 0.57071, std: 0.07147, params: {'max_depth': 6, 'min_samples_leaf': 4}, mean: 0.57576, std: 0.05754, params: {'max_depth': 6, 'min_samples_leaf': 5}, mean: 0.53030, std: 0.04552, params: {'max_depth': 6, 'min_samples_leaf': 6}, mean: 0.62121, std: 0.07075, params: {'max_depth': 7, 'min_samples_leaf': 1}, mean: 0.61616, std: 0.05810, params: {'max_depth': 7, 'min_samples_leaf': 2}, mean: 0.59596, std: 0.05766, params: {'max_depth': 7, 'min_samples_leaf': 3}, mean: 0.57576, std: 0.09021, params: {'max_depth': 7, 'min_samples_leaf': 4}, mean: 0.60101, std: 0.07161, params: {'max_depth': 7, 'min_samples_leaf': 5}, mean: 0.55051, std: 0.06373, params: {'max_depth': 7, 'min_samples_leaf': 6}]
############# based on standard predict ################
Accuracy on training data: 0.66
Accuracy on test data:     0.62
[[82  0]
 [51  0]]
########################################################
/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/kernel/__main__.py:22: FutureWarning: comparison to `None` will result in an elementwise object comparison in the future.

In [111]:
def plot_2tree(ax, Xtr, Xte, ytr, yte, clf, plot_train = True, plot_test = True, lab = ['Feature 1', 'Feature 2'], mesh=True, colorscale=cmap_light, cdiscrete=cmap_bold, alpha=0.3, psize=10, zfunc=False):
    # Create a meshgrid as our test data
    plt.figure(figsize=(15,10))
    plot_step= 0.05
    xmin, xmax= Xtr[:,0].min(), Xtr[:,0].max()
    ymin, ymax= Xtr[:,1].min(), Xtr[:,1].max()
    xx, yy = np.meshgrid(np.arange(xmin, xmax, plot_step), np.arange(ymin, ymax, plot_step))

    # Re-cast every coordinate in the meshgrid as a 2D point
    Xplot= np.c_[xx.ravel(), yy.ravel()]


    # Predict the class
    Z = clfTree1.predict( Xplot )

    # Re-shape the results
    Z= Z.reshape(xx.shape)
    cs = plt.contourf(xx, yy, Z, cmap= cmap_light, alpha=0.3)
  
    # Overlay training samples
    if (plot_train == True):
        plt.scatter(Xtr[:, 0], Xtr[:, 1], c=ytr-1, cmap=cmap_bold, alpha=alpha,edgecolor="k") 
    # and testing points
    if (plot_test == True):
        plt.scatter(Xte[:, 0], Xte[:, 1], c=yte-1, cmap=cmap_bold, alpha=alpha, marker="s")

    plt.xlabel(lab[0])
    plt.ylabel(lab[1])
    plt.title("Boundary for decision tree classifier",fontsize=7.5)

In [113]:
plot_2tree(plt, Xtrain, Xtest, ytrain, ytest, clfTree1, 
           lab = ['abs_valence_avg','total_theaters'], alpha = 1, plot_test = False)



In [114]:
clfTree2 = tree.DecisionTreeClassifier()
clfTree2, Xtrain, ytrain, Xtest, ytest=do_classify(clfTree2, parameters_tree, dftouse, Xnames,
                                                 'adj_opening_gross_bin', 1, mask=mask_classify)


using mask
BEST {'max_depth': 1, 'min_samples_leaf': 1} 0.89898989899 [mean: 0.89899, std: 0.05400, params: {'max_depth': 1, 'min_samples_leaf': 1}, mean: 0.89899, std: 0.05400, params: {'max_depth': 1, 'min_samples_leaf': 2}, mean: 0.89899, std: 0.05400, params: {'max_depth': 1, 'min_samples_leaf': 3}, mean: 0.89899, std: 0.05400, params: {'max_depth': 1, 'min_samples_leaf': 4}, mean: 0.89899, std: 0.05400, params: {'max_depth': 1, 'min_samples_leaf': 5}, mean: 0.89899, std: 0.05400, params: {'max_depth': 1, 'min_samples_leaf': 6}, mean: 0.86364, std: 0.05166, params: {'max_depth': 2, 'min_samples_leaf': 1}, mean: 0.86364, std: 0.05166, params: {'max_depth': 2, 'min_samples_leaf': 2}, mean: 0.86364, std: 0.05166, params: {'max_depth': 2, 'min_samples_leaf': 3}, mean: 0.86364, std: 0.05166, params: {'max_depth': 2, 'min_samples_leaf': 4}, mean: 0.86364, std: 0.05166, params: {'max_depth': 2, 'min_samples_leaf': 5}, mean: 0.86364, std: 0.05166, params: {'max_depth': 2, 'min_samples_leaf': 6}, mean: 0.87374, std: 0.07317, params: {'max_depth': 3, 'min_samples_leaf': 1}, mean: 0.87879, std: 0.06427, params: {'max_depth': 3, 'min_samples_leaf': 2}, mean: 0.88889, std: 0.06027, params: {'max_depth': 3, 'min_samples_leaf': 3}, mean: 0.88384, std: 0.05583, params: {'max_depth': 3, 'min_samples_leaf': 4}, mean: 0.89899, std: 0.05400, params: {'max_depth': 3, 'min_samples_leaf': 5}, mean: 0.88384, std: 0.05328, params: {'max_depth': 3, 'min_samples_leaf': 6}, mean: 0.86869, std: 0.06027, params: {'max_depth': 4, 'min_samples_leaf': 1}, mean: 0.87374, std: 0.05466, params: {'max_depth': 4, 'min_samples_leaf': 2}, mean: 0.87879, std: 0.04785, params: {'max_depth': 4, 'min_samples_leaf': 3}, mean: 0.87879, std: 0.04785, params: {'max_depth': 4, 'min_samples_leaf': 4}, mean: 0.89899, std: 0.04318, params: {'max_depth': 4, 'min_samples_leaf': 5}, mean: 0.89394, std: 0.03799, params: {'max_depth': 4, 'min_samples_leaf': 6}, mean: 0.84848, std: 0.04698, params: {'max_depth': 5, 'min_samples_leaf': 1}, mean: 0.85354, std: 0.05094, params: {'max_depth': 5, 'min_samples_leaf': 2}, mean: 0.87879, std: 0.04785, params: {'max_depth': 5, 'min_samples_leaf': 3}, mean: 0.86364, std: 0.04595, params: {'max_depth': 5, 'min_samples_leaf': 4}, mean: 0.89394, std: 0.05266, params: {'max_depth': 5, 'min_samples_leaf': 5}, mean: 0.89394, std: 0.03799, params: {'max_depth': 5, 'min_samples_leaf': 6}, mean: 0.85859, std: 0.03570, params: {'max_depth': 6, 'min_samples_leaf': 1}, mean: 0.84343, std: 0.05317, params: {'max_depth': 6, 'min_samples_leaf': 2}, mean: 0.87374, std: 0.03367, params: {'max_depth': 6, 'min_samples_leaf': 3}, mean: 0.86869, std: 0.05069, params: {'max_depth': 6, 'min_samples_leaf': 4}, mean: 0.89394, std: 0.05266, params: {'max_depth': 6, 'min_samples_leaf': 5}, mean: 0.89394, std: 0.03799, params: {'max_depth': 6, 'min_samples_leaf': 6}, mean: 0.84848, std: 0.03257, params: {'max_depth': 7, 'min_samples_leaf': 1}, mean: 0.86364, std: 0.02072, params: {'max_depth': 7, 'min_samples_leaf': 2}, mean: 0.86869, std: 0.05080, params: {'max_depth': 7, 'min_samples_leaf': 3}, mean: 0.86869, std: 0.05069, params: {'max_depth': 7, 'min_samples_leaf': 4}, mean: 0.89394, std: 0.05266, params: {'max_depth': 7, 'min_samples_leaf': 5}, mean: 0.89394, std: 0.03799, params: {'max_depth': 7, 'min_samples_leaf': 6}]
############# based on standard predict ################
Accuracy on training data: 0.90
Accuracy on test data:     0.80
[[61 21]
 [ 6 45]]
########################################################
/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/kernel/__main__.py:22: FutureWarning: comparison to `None` will result in an elementwise object comparison in the future.

In [127]:
from sklearn.ensemble import RandomForestClassifier

clfforest1 = RandomForestClassifier()

parameters_forest = {"n_estimators": range(1, len(Xnames))}
clfforest1, Xtrain, ytrain, Xtest, ytest = do_classify(clfforest1, parameters_forest, 
                                                       dftouse, Xnames, 'adj_opening_gross_bin', 1, mask=mask_classify)


using mask
BEST {'n_estimators': 6} 0.848484848485 [mean: 0.77778, std: 0.07489, params: {'n_estimators': 1}, mean: 0.78283, std: 0.01723, params: {'n_estimators': 2}, mean: 0.82323, std: 0.02912, params: {'n_estimators': 3}, mean: 0.81818, std: 0.02862, params: {'n_estimators': 4}, mean: 0.83838, std: 0.04494, params: {'n_estimators': 5}, mean: 0.84848, std: 0.04614, params: {'n_estimators': 6}, mean: 0.83838, std: 0.05846, params: {'n_estimators': 7}]
############# based on standard predict ################
Accuracy on training data: 0.98
Accuracy on test data:     0.77
[[68 14]
 [16 35]]
########################################################
/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/kernel/__main__.py:22: FutureWarning: comparison to `None` will result in an elementwise object comparison in the future.

In [128]:
clfforest2 = RandomForestClassifier()

parameters_forest = {"n_estimators": range(1, len(Xnames))}
clfforest2, Xtrain, ytrain, Xtest, ytest = do_classify(clfforest2, parameters_forest, 
                                                       dftouse, Xnames, 'adj_opening_gross_bin', 1, mask=mask_classify)


using mask
BEST {'n_estimators': 5} 0.863636363636 [mean: 0.82323, std: 0.03897, params: {'n_estimators': 1}, mean: 0.77778, std: 0.02852, params: {'n_estimators': 2}, mean: 0.84343, std: 0.04774, params: {'n_estimators': 3}, mean: 0.80303, std: 0.03014, params: {'n_estimators': 4}, mean: 0.86364, std: 0.04151, params: {'n_estimators': 5}, mean: 0.81818, std: 0.02110, params: {'n_estimators': 6}, mean: 0.84343, std: 0.01778, params: {'n_estimators': 7}]
############# based on standard predict ################
Accuracy on training data: 0.98
Accuracy on test data:     0.76
[[66 16]
 [16 35]]
########################################################
/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/kernel/__main__.py:22: FutureWarning: comparison to `None` will result in an elementwise object comparison in the future.

In [117]:
from sklearn.ensemble import AdaBoostClassifier

clfAda1 = AdaBoostClassifier()

parameters_adaboost = {"n_estimators": range(10, 60)}
clfAda1, Xtrain, ytrain, Xtest, ytest = do_classify(clfAda1, parameters_adaboost, 
                                                       dftouse, two_features, 'adj_opening_gross_bin', 
                                                   1, mask=mask_classify)


using mask
BEST {'n_estimators': 10} 0.636363636364 [mean: 0.63636, std: 0.05375, params: {'n_estimators': 10}, mean: 0.60606, std: 0.05970, params: {'n_estimators': 11}, mean: 0.63636, std: 0.03226, params: {'n_estimators': 12}, mean: 0.59596, std: 0.06395, params: {'n_estimators': 13}, mean: 0.60606, std: 0.06511, params: {'n_estimators': 14}, mean: 0.59596, std: 0.06395, params: {'n_estimators': 15}, mean: 0.58081, std: 0.06367, params: {'n_estimators': 16}, mean: 0.57576, std: 0.06892, params: {'n_estimators': 17}, mean: 0.60101, std: 0.05567, params: {'n_estimators': 18}, mean: 0.58081, std: 0.06492, params: {'n_estimators': 19}, mean: 0.59596, std: 0.05857, params: {'n_estimators': 20}, mean: 0.56566, std: 0.08429, params: {'n_estimators': 21}, mean: 0.58586, std: 0.06924, params: {'n_estimators': 22}, mean: 0.54040, std: 0.07564, params: {'n_estimators': 23}, mean: 0.56566, std: 0.05543, params: {'n_estimators': 24}, mean: 0.54545, std: 0.03777, params: {'n_estimators': 25}, mean: 0.56566, std: 0.06624, params: {'n_estimators': 26}, mean: 0.58081, std: 0.07436, params: {'n_estimators': 27}, mean: 0.59091, std: 0.07035, params: {'n_estimators': 28}, mean: 0.57576, std: 0.06407, params: {'n_estimators': 29}, mean: 0.59091, std: 0.05802, params: {'n_estimators': 30}, mean: 0.58586, std: 0.05892, params: {'n_estimators': 31}, mean: 0.59091, std: 0.05802, params: {'n_estimators': 32}, mean: 0.58586, std: 0.05681, params: {'n_estimators': 33}, mean: 0.59596, std: 0.06712, params: {'n_estimators': 34}, mean: 0.58081, std: 0.06172, params: {'n_estimators': 35}, mean: 0.59091, std: 0.07202, params: {'n_estimators': 36}, mean: 0.59091, std: 0.07202, params: {'n_estimators': 37}, mean: 0.56061, std: 0.09539, params: {'n_estimators': 38}, mean: 0.56061, std: 0.08044, params: {'n_estimators': 39}, mean: 0.54545, std: 0.07751, params: {'n_estimators': 40}, mean: 0.57576, std: 0.09261, params: {'n_estimators': 41}, mean: 0.54545, std: 0.07222, params: {'n_estimators': 42}, mean: 0.56566, std: 0.05167, params: {'n_estimators': 43}, mean: 0.54545, std: 0.05365, params: {'n_estimators': 44}, mean: 0.55556, std: 0.06064, params: {'n_estimators': 45}, mean: 0.54545, std: 0.05365, params: {'n_estimators': 46}, mean: 0.55556, std: 0.07942, params: {'n_estimators': 47}, mean: 0.56061, std: 0.04916, params: {'n_estimators': 48}, mean: 0.58081, std: 0.06270, params: {'n_estimators': 49}, mean: 0.57071, std: 0.06289, params: {'n_estimators': 50}, mean: 0.58081, std: 0.06270, params: {'n_estimators': 51}, mean: 0.57576, std: 0.06199, params: {'n_estimators': 52}, mean: 0.59091, std: 0.05180, params: {'n_estimators': 53}, mean: 0.57071, std: 0.06067, params: {'n_estimators': 54}, mean: 0.59091, std: 0.05180, params: {'n_estimators': 55}, mean: 0.58081, std: 0.06504, params: {'n_estimators': 56}, mean: 0.59091, std: 0.06326, params: {'n_estimators': 57}, mean: 0.58081, std: 0.06781, params: {'n_estimators': 58}, mean: 0.59091, std: 0.06021, params: {'n_estimators': 59}]
############# based on standard predict ################
Accuracy on training data: 0.74
Accuracy on test data:     0.53
[[49 33]
 [29 22]]
########################################################
/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/kernel/__main__.py:22: FutureWarning: comparison to `None` will result in an elementwise object comparison in the future.

In [118]:
clfAda2 = AdaBoostClassifier()

parameters_adaboost = {"n_estimators": range(10, 60)}
clfAda2, Xtrain, ytrain, Xtest, ytest = do_classify(clfAda2, parameters_adaboost, 
                                                       dftouse, Xnames, 'adj_opening_gross_bin', 
                                                   1, mask=mask_classify)


using mask
BEST {'n_estimators': 17} 0.883838383838 [mean: 0.85859, std: 0.03506, params: {'n_estimators': 10}, mean: 0.87879, std: 0.03423, params: {'n_estimators': 11}, mean: 0.86869, std: 0.03333, params: {'n_estimators': 12}, mean: 0.87879, std: 0.03458, params: {'n_estimators': 13}, mean: 0.86869, std: 0.03333, params: {'n_estimators': 14}, mean: 0.86364, std: 0.03443, params: {'n_estimators': 15}, mean: 0.87879, std: 0.03684, params: {'n_estimators': 16}, mean: 0.88384, std: 0.04162, params: {'n_estimators': 17}, mean: 0.87374, std: 0.05258, params: {'n_estimators': 18}, mean: 0.86869, std: 0.03970, params: {'n_estimators': 19}, mean: 0.86869, std: 0.04863, params: {'n_estimators': 20}, mean: 0.87374, std: 0.05258, params: {'n_estimators': 21}, mean: 0.85859, std: 0.05437, params: {'n_estimators': 22}, mean: 0.86869, std: 0.06067, params: {'n_estimators': 23}, mean: 0.86869, std: 0.07340, params: {'n_estimators': 24}, mean: 0.85859, std: 0.07763, params: {'n_estimators': 25}, mean: 0.85354, std: 0.05804, params: {'n_estimators': 26}, mean: 0.83838, std: 0.04998, params: {'n_estimators': 27}, mean: 0.83838, std: 0.04728, params: {'n_estimators': 28}, mean: 0.84848, std: 0.05855, params: {'n_estimators': 29}, mean: 0.84343, std: 0.06180, params: {'n_estimators': 30}, mean: 0.84848, std: 0.05626, params: {'n_estimators': 31}, mean: 0.84848, std: 0.05626, params: {'n_estimators': 32}, mean: 0.85859, std: 0.05278, params: {'n_estimators': 33}, mean: 0.85859, std: 0.05754, params: {'n_estimators': 34}, mean: 0.85859, std: 0.05754, params: {'n_estimators': 35}, mean: 0.84848, std: 0.07459, params: {'n_estimators': 36}, mean: 0.84848, std: 0.05855, params: {'n_estimators': 37}, mean: 0.85859, std: 0.04617, params: {'n_estimators': 38}, mean: 0.85859, std: 0.04987, params: {'n_estimators': 39}, mean: 0.86364, std: 0.06107, params: {'n_estimators': 40}, mean: 0.85859, std: 0.06707, params: {'n_estimators': 41}, mean: 0.85859, std: 0.06740, params: {'n_estimators': 42}, mean: 0.85859, std: 0.05198, params: {'n_estimators': 43}, mean: 0.85859, std: 0.05198, params: {'n_estimators': 44}, mean: 0.85859, std: 0.05198, params: {'n_estimators': 45}, mean: 0.86869, std: 0.05591, params: {'n_estimators': 46}, mean: 0.87879, std: 0.05178, params: {'n_estimators': 47}, mean: 0.86869, std: 0.05865, params: {'n_estimators': 48}, mean: 0.86869, std: 0.05550, params: {'n_estimators': 49}, mean: 0.86869, std: 0.05149, params: {'n_estimators': 50}, mean: 0.86364, std: 0.04402, params: {'n_estimators': 51}, mean: 0.87879, std: 0.03940, params: {'n_estimators': 52}, mean: 0.87374, std: 0.04468, params: {'n_estimators': 53}, mean: 0.87879, std: 0.03940, params: {'n_estimators': 54}, mean: 0.87374, std: 0.04468, params: {'n_estimators': 55}, mean: 0.87374, std: 0.04468, params: {'n_estimators': 56}, mean: 0.87374, std: 0.03835, params: {'n_estimators': 57}, mean: 0.87374, std: 0.03835, params: {'n_estimators': 58}, mean: 0.86869, std: 0.04315, params: {'n_estimators': 59}]
############# based on standard predict ################
Accuracy on training data: 0.96
Accuracy on test data:     0.74
[[59 23]
 [12 39]]
########################################################
/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/kernel/__main__.py:22: FutureWarning: comparison to `None` will result in an elementwise object comparison in the future.

In [119]:
from sklearn.ensemble import GradientBoostingClassifier

clfGB = GradientBoostingClassifier()

parameters_GB = {"n_estimators": range(30, 60), "max_depth": [1, 2, 3, 4, 5]}
clfGB, Xtrain, ytrain, Xtest, ytest = do_classify(clfGB, parameters_GB, 
                                                       dftouse, two_features, 'adj_opening_gross_bin', 1
                                                  , mask=mask_classify)


using mask
BEST {'n_estimators': 30, 'max_depth': 1} 0.656565656566 [mean: 0.65657, std: 0.00993, params: {'n_estimators': 30, 'max_depth': 1}, mean: 0.64646, std: 0.02100, params: {'n_estimators': 31, 'max_depth': 1}, mean: 0.64646, std: 0.02100, params: {'n_estimators': 32, 'max_depth': 1}, mean: 0.64646, std: 0.02100, params: {'n_estimators': 33, 'max_depth': 1}, mean: 0.64646, std: 0.02100, params: {'n_estimators': 34, 'max_depth': 1}, mean: 0.64646, std: 0.02100, params: {'n_estimators': 35, 'max_depth': 1}, mean: 0.64646, std: 0.02100, params: {'n_estimators': 36, 'max_depth': 1}, mean: 0.64646, std: 0.02100, params: {'n_estimators': 37, 'max_depth': 1}, mean: 0.64646, std: 0.02100, params: {'n_estimators': 38, 'max_depth': 1}, mean: 0.64646, std: 0.02100, params: {'n_estimators': 39, 'max_depth': 1}, mean: 0.64646, std: 0.02100, params: {'n_estimators': 40, 'max_depth': 1}, mean: 0.64646, std: 0.02100, params: {'n_estimators': 41, 'max_depth': 1}, mean: 0.64141, std: 0.02257, params: {'n_estimators': 42, 'max_depth': 1}, mean: 0.64141, std: 0.02257, params: {'n_estimators': 43, 'max_depth': 1}, mean: 0.63636, std: 0.02788, params: {'n_estimators': 44, 'max_depth': 1}, mean: 0.63636, std: 0.02788, params: {'n_estimators': 45, 'max_depth': 1}, mean: 0.63636, std: 0.02788, params: {'n_estimators': 46, 'max_depth': 1}, mean: 0.64141, std: 0.02257, params: {'n_estimators': 47, 'max_depth': 1}, mean: 0.64141, std: 0.02257, params: {'n_estimators': 48, 'max_depth': 1}, mean: 0.64141, std: 0.02257, params: {'n_estimators': 49, 'max_depth': 1}, mean: 0.64141, std: 0.02257, params: {'n_estimators': 50, 'max_depth': 1}, mean: 0.64141, std: 0.02257, params: {'n_estimators': 51, 'max_depth': 1}, mean: 0.63636, std: 0.02788, params: {'n_estimators': 52, 'max_depth': 1}, mean: 0.63636, std: 0.02788, params: {'n_estimators': 53, 'max_depth': 1}, mean: 0.64646, std: 0.03584, params: {'n_estimators': 54, 'max_depth': 1}, mean: 0.64646, std: 0.03584, params: {'n_estimators': 55, 'max_depth': 1}, mean: 0.64646, std: 0.03584, params: {'n_estimators': 56, 'max_depth': 1}, mean: 0.65152, std: 0.03023, params: {'n_estimators': 57, 'max_depth': 1}, mean: 0.65152, std: 0.03023, params: {'n_estimators': 58, 'max_depth': 1}, mean: 0.65152, std: 0.03023, params: {'n_estimators': 59, 'max_depth': 1}, mean: 0.65152, std: 0.03794, params: {'n_estimators': 30, 'max_depth': 2}, mean: 0.65657, std: 0.03562, params: {'n_estimators': 31, 'max_depth': 2}, mean: 0.65152, std: 0.03794, params: {'n_estimators': 32, 'max_depth': 2}, mean: 0.65657, std: 0.03562, params: {'n_estimators': 33, 'max_depth': 2}, mean: 0.65152, std: 0.03794, params: {'n_estimators': 34, 'max_depth': 2}, mean: 0.65152, std: 0.03794, params: {'n_estimators': 35, 'max_depth': 2}, mean: 0.65152, std: 0.03794, params: {'n_estimators': 36, 'max_depth': 2}, mean: 0.65657, std: 0.03562, params: {'n_estimators': 37, 'max_depth': 2}, mean: 0.65152, std: 0.03794, params: {'n_estimators': 38, 'max_depth': 2}, mean: 0.65657, std: 0.03562, params: {'n_estimators': 39, 'max_depth': 2}, mean: 0.65657, std: 0.03562, params: {'n_estimators': 40, 'max_depth': 2}, mean: 0.65152, std: 0.03794, params: {'n_estimators': 41, 'max_depth': 2}, mean: 0.65657, std: 0.03783, params: {'n_estimators': 42, 'max_depth': 2}, mean: 0.65152, std: 0.03794, params: {'n_estimators': 43, 'max_depth': 2}, mean: 0.65657, std: 0.03562, params: {'n_estimators': 44, 'max_depth': 2}, mean: 0.65152, std: 0.03794, params: {'n_estimators': 45, 'max_depth': 2}, mean: 0.65152, std: 0.03794, params: {'n_estimators': 46, 'max_depth': 2}, mean: 0.64141, std: 0.03773, params: {'n_estimators': 47, 'max_depth': 2}, mean: 0.64646, std: 0.03110, params: {'n_estimators': 48, 'max_depth': 2}, mean: 0.64646, std: 0.03110, params: {'n_estimators': 49, 'max_depth': 2}, mean: 0.64141, std: 0.03218, params: {'n_estimators': 50, 'max_depth': 2}, mean: 0.63636, std: 0.03757, params: {'n_estimators': 51, 'max_depth': 2}, mean: 0.63636, std: 0.03757, params: {'n_estimators': 52, 'max_depth': 2}, mean: 0.63636, std: 0.03757, params: {'n_estimators': 53, 'max_depth': 2}, mean: 0.64141, std: 0.03734, params: {'n_estimators': 54, 'max_depth': 2}, mean: 0.63636, std: 0.03757, params: {'n_estimators': 55, 'max_depth': 2}, mean: 0.64141, std: 0.03734, params: {'n_estimators': 56, 'max_depth': 2}, mean: 0.63636, std: 0.04244, params: {'n_estimators': 57, 'max_depth': 2}, mean: 0.63636, std: 0.04244, params: {'n_estimators': 58, 'max_depth': 2}, mean: 0.63131, std: 0.04207, params: {'n_estimators': 59, 'max_depth': 2}, mean: 0.62626, std: 0.04802, params: {'n_estimators': 30, 'max_depth': 3}, mean: 0.62626, std: 0.03895, params: {'n_estimators': 31, 'max_depth': 3}, mean: 0.62121, std: 0.04310, params: {'n_estimators': 32, 'max_depth': 3}, mean: 0.62626, std: 0.04176, params: {'n_estimators': 33, 'max_depth': 3}, mean: 0.63131, std: 0.04277, params: {'n_estimators': 34, 'max_depth': 3}, mean: 0.62121, std: 0.04988, params: {'n_estimators': 35, 'max_depth': 3}, mean: 0.62626, std: 0.05123, params: {'n_estimators': 36, 'max_depth': 3}, mean: 0.62626, std: 0.05716, params: {'n_estimators': 37, 'max_depth': 3}, mean: 0.61616, std: 0.05192, params: {'n_estimators': 38, 'max_depth': 3}, mean: 0.62121, std: 0.04474, params: {'n_estimators': 39, 'max_depth': 3}, mean: 0.63131, std: 0.04970, params: {'n_estimators': 40, 'max_depth': 3}, mean: 0.62626, std: 0.04622, params: {'n_estimators': 41, 'max_depth': 3}, mean: 0.61616, std: 0.05192, params: {'n_estimators': 42, 'max_depth': 3}, mean: 0.61616, std: 0.06333, params: {'n_estimators': 43, 'max_depth': 3}, mean: 0.62121, std: 0.05526, params: {'n_estimators': 44, 'max_depth': 3}, mean: 0.62121, std: 0.05526, params: {'n_estimators': 45, 'max_depth': 3}, mean: 0.63131, std: 0.06299, params: {'n_estimators': 46, 'max_depth': 3}, mean: 0.62626, std: 0.06232, params: {'n_estimators': 47, 'max_depth': 3}, mean: 0.63131, std: 0.06299, params: {'n_estimators': 48, 'max_depth': 3}, mean: 0.63636, std: 0.07041, params: {'n_estimators': 49, 'max_depth': 3}, mean: 0.63636, std: 0.07041, params: {'n_estimators': 50, 'max_depth': 3}, mean: 0.63636, std: 0.07041, params: {'n_estimators': 51, 'max_depth': 3}, mean: 0.62626, std: 0.07738, params: {'n_estimators': 52, 'max_depth': 3}, mean: 0.62626, std: 0.07738, params: {'n_estimators': 53, 'max_depth': 3}, mean: 0.62626, std: 0.07738, params: {'n_estimators': 54, 'max_depth': 3}, mean: 0.62121, std: 0.08054, params: {'n_estimators': 55, 'max_depth': 3}, mean: 0.62626, std: 0.07398, params: {'n_estimators': 56, 'max_depth': 3}, mean: 0.63131, std: 0.07453, params: {'n_estimators': 57, 'max_depth': 3}, mean: 0.61616, std: 0.07309, params: {'n_estimators': 58, 'max_depth': 3}, mean: 0.61616, std: 0.07309, params: {'n_estimators': 59, 'max_depth': 3}, mean: 0.62626, std: 0.02630, params: {'n_estimators': 30, 'max_depth': 4}, mean: 0.62626, std: 0.03335, params: {'n_estimators': 31, 'max_depth': 4}, mean: 0.62626, std: 0.03335, params: {'n_estimators': 32, 'max_depth': 4}, mean: 0.62626, std: 0.04652, params: {'n_estimators': 33, 'max_depth': 4}, mean: 0.62626, std: 0.05287, params: {'n_estimators': 34, 'max_depth': 4}, mean: 0.62626, std: 0.04652, params: {'n_estimators': 35, 'max_depth': 4}, mean: 0.63131, std: 0.04470, params: {'n_estimators': 36, 'max_depth': 4}, mean: 0.61616, std: 0.05678, params: {'n_estimators': 37, 'max_depth': 4}, mean: 0.63131, std: 0.05223, params: {'n_estimators': 38, 'max_depth': 4}, mean: 0.61111, std: 0.06426, params: {'n_estimators': 39, 'max_depth': 4}, mean: 0.61111, std: 0.06426, params: {'n_estimators': 40, 'max_depth': 4}, mean: 0.61111, std: 0.06426, params: {'n_estimators': 41, 'max_depth': 4}, mean: 0.61616, std: 0.07086, params: {'n_estimators': 42, 'max_depth': 4}, mean: 0.60606, std: 0.06562, params: {'n_estimators': 43, 'max_depth': 4}, mean: 0.62121, std: 0.06167, params: {'n_estimators': 44, 'max_depth': 4}, mean: 0.61616, std: 0.06218, params: {'n_estimators': 45, 'max_depth': 4}, mean: 0.62121, std: 0.06805, params: {'n_estimators': 46, 'max_depth': 4}, mean: 0.62121, std: 0.06805, params: {'n_estimators': 47, 'max_depth': 4}, mean: 0.62121, std: 0.07469, params: {'n_estimators': 48, 'max_depth': 4}, mean: 0.62121, std: 0.06805, params: {'n_estimators': 49, 'max_depth': 4}, mean: 0.61616, std: 0.05585, params: {'n_estimators': 50, 'max_depth': 4}, mean: 0.61616, std: 0.05585, params: {'n_estimators': 51, 'max_depth': 4}, mean: 0.61616, std: 0.05585, params: {'n_estimators': 52, 'max_depth': 4}, mean: 0.61616, std: 0.04933, params: {'n_estimators': 53, 'max_depth': 4}, mean: 0.61111, std: 0.04947, params: {'n_estimators': 54, 'max_depth': 4}, mean: 0.60606, std: 0.04456, params: {'n_estimators': 55, 'max_depth': 4}, mean: 0.61111, std: 0.05206, params: {'n_estimators': 56, 'max_depth': 4}, mean: 0.61111, std: 0.04947, params: {'n_estimators': 57, 'max_depth': 4}, mean: 0.61111, std: 0.06344, params: {'n_estimators': 58, 'max_depth': 4}, mean: 0.60606, std: 0.05970, params: {'n_estimators': 59, 'max_depth': 4}, mean: 0.61111, std: 0.04923, params: {'n_estimators': 30, 'max_depth': 5}, mean: 0.62121, std: 0.05160, params: {'n_estimators': 31, 'max_depth': 5}, mean: 0.61111, std: 0.04696, params: {'n_estimators': 32, 'max_depth': 5}, mean: 0.61616, std: 0.06329, params: {'n_estimators': 33, 'max_depth': 5}, mean: 0.60606, std: 0.06354, params: {'n_estimators': 34, 'max_depth': 5}, mean: 0.59091, std: 0.06590, params: {'n_estimators': 35, 'max_depth': 5}, mean: 0.60606, std: 0.06354, params: {'n_estimators': 36, 'max_depth': 5}, mean: 0.61616, std: 0.07885, params: {'n_estimators': 37, 'max_depth': 5}, mean: 0.60606, std: 0.06144, params: {'n_estimators': 38, 'max_depth': 5}, mean: 0.60101, std: 0.06196, params: {'n_estimators': 39, 'max_depth': 5}, mean: 0.59596, std: 0.06398, params: {'n_estimators': 40, 'max_depth': 5}, mean: 0.59596, std: 0.04771, params: {'n_estimators': 41, 'max_depth': 5}, mean: 0.59596, std: 0.07768, params: {'n_estimators': 42, 'max_depth': 5}, mean: 0.59091, std: 0.06736, params: {'n_estimators': 43, 'max_depth': 5}, mean: 0.58081, std: 0.06762, params: {'n_estimators': 44, 'max_depth': 5}, mean: 0.59091, std: 0.07164, params: {'n_estimators': 45, 'max_depth': 5}, mean: 0.58586, std: 0.06006, params: {'n_estimators': 46, 'max_depth': 5}, mean: 0.59596, std: 0.04771, params: {'n_estimators': 47, 'max_depth': 5}, mean: 0.59091, std: 0.05331, params: {'n_estimators': 48, 'max_depth': 5}, mean: 0.58081, std: 0.07500, params: {'n_estimators': 49, 'max_depth': 5}, mean: 0.58081, std: 0.06762, params: {'n_estimators': 50, 'max_depth': 5}, mean: 0.58081, std: 0.05376, params: {'n_estimators': 51, 'max_depth': 5}, mean: 0.58081, std: 0.06286, params: {'n_estimators': 52, 'max_depth': 5}, mean: 0.58586, std: 0.05688, params: {'n_estimators': 53, 'max_depth': 5}, mean: 0.59596, std: 0.07355, params: {'n_estimators': 54, 'max_depth': 5}, mean: 0.59091, std: 0.07820, params: {'n_estimators': 55, 'max_depth': 5}, mean: 0.59596, std: 0.08200, params: {'n_estimators': 56, 'max_depth': 5}, mean: 0.56061, std: 0.06074, params: {'n_estimators': 57, 'max_depth': 5}, mean: 0.59596, std: 0.06290, params: {'n_estimators': 58, 'max_depth': 5}, mean: 0.58081, std: 0.06286, params: {'n_estimators': 59, 'max_depth': 5}]
############# based on standard predict ################
Accuracy on training data: 0.67
Accuracy on test data:     0.59
[[79  3]
 [51  0]]
########################################################
/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/kernel/__main__.py:22: FutureWarning: comparison to `None` will result in an elementwise object comparison in the future.

In [120]:
clfGB2 = GradientBoostingClassifier()

parameters_GB = {"n_estimators": range(30, 60), "max_depth": [1, 2, 3, 4, 5]}
clfGB2, Xtrain, ytrain, Xtest, ytest = do_classify(clfGB2, parameters_GB, 
                                                       dftouse, Xnames, 'adj_opening_gross_bin', 1
                                                  , mask=mask_classify)


using mask
BEST {'n_estimators': 30, 'max_depth': 2} 0.893939393939 [mean: 0.87879, std: 0.05577, params: {'n_estimators': 30, 'max_depth': 1}, mean: 0.87879, std: 0.05577, params: {'n_estimators': 31, 'max_depth': 1}, mean: 0.87879, std: 0.05577, params: {'n_estimators': 32, 'max_depth': 1}, mean: 0.87879, std: 0.05577, params: {'n_estimators': 33, 'max_depth': 1}, mean: 0.87879, std: 0.05577, params: {'n_estimators': 34, 'max_depth': 1}, mean: 0.87879, std: 0.05577, params: {'n_estimators': 35, 'max_depth': 1}, mean: 0.88384, std: 0.06056, params: {'n_estimators': 36, 'max_depth': 1}, mean: 0.88384, std: 0.06056, params: {'n_estimators': 37, 'max_depth': 1}, mean: 0.88384, std: 0.06056, params: {'n_estimators': 38, 'max_depth': 1}, mean: 0.88384, std: 0.06056, params: {'n_estimators': 39, 'max_depth': 1}, mean: 0.88384, std: 0.06056, params: {'n_estimators': 40, 'max_depth': 1}, mean: 0.88384, std: 0.06056, params: {'n_estimators': 41, 'max_depth': 1}, mean: 0.88384, std: 0.06056, params: {'n_estimators': 42, 'max_depth': 1}, mean: 0.88384, std: 0.06056, params: {'n_estimators': 43, 'max_depth': 1}, mean: 0.88384, std: 0.06056, params: {'n_estimators': 44, 'max_depth': 1}, mean: 0.88384, std: 0.06056, params: {'n_estimators': 45, 'max_depth': 1}, mean: 0.88384, std: 0.06056, params: {'n_estimators': 46, 'max_depth': 1}, mean: 0.88384, std: 0.06056, params: {'n_estimators': 47, 'max_depth': 1}, mean: 0.87879, std: 0.05796, params: {'n_estimators': 48, 'max_depth': 1}, mean: 0.87879, std: 0.05796, params: {'n_estimators': 49, 'max_depth': 1}, mean: 0.87879, std: 0.05796, params: {'n_estimators': 50, 'max_depth': 1}, mean: 0.87879, std: 0.05796, params: {'n_estimators': 51, 'max_depth': 1}, mean: 0.87879, std: 0.05796, params: {'n_estimators': 52, 'max_depth': 1}, mean: 0.87879, std: 0.05796, params: {'n_estimators': 53, 'max_depth': 1}, mean: 0.87879, std: 0.05796, params: {'n_estimators': 54, 'max_depth': 1}, mean: 0.87879, std: 0.05796, params: {'n_estimators': 55, 'max_depth': 1}, mean: 0.87879, std: 0.05796, params: {'n_estimators': 56, 'max_depth': 1}, mean: 0.87879, std: 0.05796, params: {'n_estimators': 57, 'max_depth': 1}, mean: 0.87879, std: 0.05796, params: {'n_estimators': 58, 'max_depth': 1}, mean: 0.87879, std: 0.05796, params: {'n_estimators': 59, 'max_depth': 1}, mean: 0.89394, std: 0.05456, params: {'n_estimators': 30, 'max_depth': 2}, mean: 0.89394, std: 0.05456, params: {'n_estimators': 31, 'max_depth': 2}, mean: 0.89394, std: 0.05456, params: {'n_estimators': 32, 'max_depth': 2}, mean: 0.89394, std: 0.05456, params: {'n_estimators': 33, 'max_depth': 2}, mean: 0.89394, std: 0.05456, params: {'n_estimators': 34, 'max_depth': 2}, mean: 0.89394, std: 0.05456, params: {'n_estimators': 35, 'max_depth': 2}, mean: 0.89394, std: 0.05456, params: {'n_estimators': 36, 'max_depth': 2}, mean: 0.89394, std: 0.05456, params: {'n_estimators': 37, 'max_depth': 2}, mean: 0.89394, std: 0.05456, params: {'n_estimators': 38, 'max_depth': 2}, mean: 0.89394, std: 0.05456, params: {'n_estimators': 39, 'max_depth': 2}, mean: 0.89394, std: 0.05456, params: {'n_estimators': 40, 'max_depth': 2}, mean: 0.89394, std: 0.05456, params: {'n_estimators': 41, 'max_depth': 2}, mean: 0.89394, std: 0.05456, params: {'n_estimators': 42, 'max_depth': 2}, mean: 0.89394, std: 0.05456, params: {'n_estimators': 43, 'max_depth': 2}, mean: 0.89394, std: 0.05456, params: {'n_estimators': 44, 'max_depth': 2}, mean: 0.89394, std: 0.05456, params: {'n_estimators': 45, 'max_depth': 2}, mean: 0.88889, std: 0.05275, params: {'n_estimators': 46, 'max_depth': 2}, mean: 0.88384, std: 0.04768, params: {'n_estimators': 47, 'max_depth': 2}, mean: 0.88384, std: 0.04768, params: {'n_estimators': 48, 'max_depth': 2}, mean: 0.88384, std: 0.04768, params: {'n_estimators': 49, 'max_depth': 2}, mean: 0.88384, std: 0.04768, params: {'n_estimators': 50, 'max_depth': 2}, mean: 0.88889, std: 0.05275, params: {'n_estimators': 51, 'max_depth': 2}, mean: 0.88384, std: 0.04768, params: {'n_estimators': 52, 'max_depth': 2}, mean: 0.88384, std: 0.04768, params: {'n_estimators': 53, 'max_depth': 2}, mean: 0.88384, std: 0.04768, params: {'n_estimators': 54, 'max_depth': 2}, mean: 0.88384, std: 0.04768, params: {'n_estimators': 55, 'max_depth': 2}, mean: 0.88384, std: 0.04768, params: {'n_estimators': 56, 'max_depth': 2}, mean: 0.88384, std: 0.04768, params: {'n_estimators': 57, 'max_depth': 2}, mean: 0.88384, std: 0.04768, params: {'n_estimators': 58, 'max_depth': 2}, mean: 0.88384, std: 0.04768, params: {'n_estimators': 59, 'max_depth': 2}, mean: 0.88384, std: 0.04768, params: {'n_estimators': 30, 'max_depth': 3}, mean: 0.88384, std: 0.05291, params: {'n_estimators': 31, 'max_depth': 3}, mean: 0.88384, std: 0.05291, params: {'n_estimators': 32, 'max_depth': 3}, mean: 0.88384, std: 0.05291, params: {'n_estimators': 33, 'max_depth': 3}, mean: 0.87879, std: 0.04730, params: {'n_estimators': 34, 'max_depth': 3}, mean: 0.87879, std: 0.04730, params: {'n_estimators': 35, 'max_depth': 3}, mean: 0.87879, std: 0.04730, params: {'n_estimators': 36, 'max_depth': 3}, mean: 0.87374, std: 0.05658, params: {'n_estimators': 37, 'max_depth': 3}, mean: 0.87879, std: 0.04730, params: {'n_estimators': 38, 'max_depth': 3}, mean: 0.87374, std: 0.05658, params: {'n_estimators': 39, 'max_depth': 3}, mean: 0.87879, std: 0.04730, params: {'n_estimators': 40, 'max_depth': 3}, mean: 0.87374, std: 0.05658, params: {'n_estimators': 41, 'max_depth': 3}, mean: 0.87374, std: 0.05658, params: {'n_estimators': 42, 'max_depth': 3}, mean: 0.87374, std: 0.05658, params: {'n_estimators': 43, 'max_depth': 3}, mean: 0.87879, std: 0.05780, params: {'n_estimators': 44, 'max_depth': 3}, mean: 0.87879, std: 0.05780, params: {'n_estimators': 45, 'max_depth': 3}, mean: 0.87374, std: 0.05658, params: {'n_estimators': 46, 'max_depth': 3}, mean: 0.87374, std: 0.05658, params: {'n_estimators': 47, 'max_depth': 3}, mean: 0.87879, std: 0.05780, params: {'n_estimators': 48, 'max_depth': 3}, mean: 0.87374, std: 0.05658, params: {'n_estimators': 49, 'max_depth': 3}, mean: 0.87374, std: 0.05658, params: {'n_estimators': 50, 'max_depth': 3}, mean: 0.87374, std: 0.05658, params: {'n_estimators': 51, 'max_depth': 3}, mean: 0.87374, std: 0.05658, params: {'n_estimators': 52, 'max_depth': 3}, mean: 0.87374, std: 0.05658, params: {'n_estimators': 53, 'max_depth': 3}, mean: 0.87374, std: 0.05658, params: {'n_estimators': 54, 'max_depth': 3}, mean: 0.87879, std: 0.05780, params: {'n_estimators': 55, 'max_depth': 3}, mean: 0.87879, std: 0.05780, params: {'n_estimators': 56, 'max_depth': 3}, mean: 0.87879, std: 0.05780, params: {'n_estimators': 57, 'max_depth': 3}, mean: 0.87374, std: 0.05927, params: {'n_estimators': 58, 'max_depth': 3}, mean: 0.87374, std: 0.05927, params: {'n_estimators': 59, 'max_depth': 3}, mean: 0.85859, std: 0.07447, params: {'n_estimators': 30, 'max_depth': 4}, mean: 0.85859, std: 0.07447, params: {'n_estimators': 31, 'max_depth': 4}, mean: 0.86869, std: 0.07026, params: {'n_estimators': 32, 'max_depth': 4}, mean: 0.86869, std: 0.08049, params: {'n_estimators': 33, 'max_depth': 4}, mean: 0.86869, std: 0.07906, params: {'n_estimators': 34, 'max_depth': 4}, mean: 0.86869, std: 0.07906, params: {'n_estimators': 35, 'max_depth': 4}, mean: 0.87879, std: 0.08222, params: {'n_estimators': 36, 'max_depth': 4}, mean: 0.87374, std: 0.08167, params: {'n_estimators': 37, 'max_depth': 4}, mean: 0.87374, std: 0.07996, params: {'n_estimators': 38, 'max_depth': 4}, mean: 0.87374, std: 0.08167, params: {'n_estimators': 39, 'max_depth': 4}, mean: 0.88384, std: 0.07225, params: {'n_estimators': 40, 'max_depth': 4}, mean: 0.88889, std: 0.06238, params: {'n_estimators': 41, 'max_depth': 4}, mean: 0.87879, std: 0.07199, params: {'n_estimators': 42, 'max_depth': 4}, mean: 0.87374, std: 0.08167, params: {'n_estimators': 43, 'max_depth': 4}, mean: 0.88384, std: 0.07225, params: {'n_estimators': 44, 'max_depth': 4}, mean: 0.87879, std: 0.08222, params: {'n_estimators': 45, 'max_depth': 4}, mean: 0.87879, std: 0.07199, params: {'n_estimators': 46, 'max_depth': 4}, mean: 0.87374, std: 0.08167, params: {'n_estimators': 47, 'max_depth': 4}, mean: 0.87879, std: 0.07199, params: {'n_estimators': 48, 'max_depth': 4}, mean: 0.87374, std: 0.06939, params: {'n_estimators': 49, 'max_depth': 4}, mean: 0.87374, std: 0.06939, params: {'n_estimators': 50, 'max_depth': 4}, mean: 0.87879, std: 0.05992, params: {'n_estimators': 51, 'max_depth': 4}, mean: 0.86364, std: 0.07437, params: {'n_estimators': 52, 'max_depth': 4}, mean: 0.86869, std: 0.07906, params: {'n_estimators': 53, 'max_depth': 4}, mean: 0.87374, std: 0.08167, params: {'n_estimators': 54, 'max_depth': 4}, mean: 0.88384, std: 0.07425, params: {'n_estimators': 55, 'max_depth': 4}, mean: 0.86869, std: 0.07746, params: {'n_estimators': 56, 'max_depth': 4}, mean: 0.87879, std: 0.07199, params: {'n_estimators': 57, 'max_depth': 4}, mean: 0.87374, std: 0.08167, params: {'n_estimators': 58, 'max_depth': 4}, mean: 0.88384, std: 0.07225, params: {'n_estimators': 59, 'max_depth': 4}, mean: 0.83838, std: 0.08603, params: {'n_estimators': 30, 'max_depth': 5}, mean: 0.84343, std: 0.07583, params: {'n_estimators': 31, 'max_depth': 5}, mean: 0.83838, std: 0.07418, params: {'n_estimators': 32, 'max_depth': 5}, mean: 0.83838, std: 0.07456, params: {'n_estimators': 33, 'max_depth': 5}, mean: 0.84343, std: 0.06629, params: {'n_estimators': 34, 'max_depth': 5}, mean: 0.85354, std: 0.08076, params: {'n_estimators': 35, 'max_depth': 5}, mean: 0.84848, std: 0.07983, params: {'n_estimators': 36, 'max_depth': 5}, mean: 0.84343, std: 0.06414, params: {'n_estimators': 37, 'max_depth': 5}, mean: 0.85859, std: 0.07069, params: {'n_estimators': 38, 'max_depth': 5}, mean: 0.83838, std: 0.07418, params: {'n_estimators': 39, 'max_depth': 5}, mean: 0.85859, std: 0.07085, params: {'n_estimators': 40, 'max_depth': 5}, mean: 0.85859, std: 0.07069, params: {'n_estimators': 41, 'max_depth': 5}, mean: 0.84848, std: 0.07843, params: {'n_estimators': 42, 'max_depth': 5}, mean: 0.84848, std: 0.07843, params: {'n_estimators': 43, 'max_depth': 5}, mean: 0.84848, std: 0.07843, params: {'n_estimators': 44, 'max_depth': 5}, mean: 0.84848, std: 0.07867, params: {'n_estimators': 45, 'max_depth': 5}, mean: 0.84343, std: 0.07716, params: {'n_estimators': 46, 'max_depth': 5}, mean: 0.84343, std: 0.07716, params: {'n_estimators': 47, 'max_depth': 5}, mean: 0.84848, std: 0.07843, params: {'n_estimators': 48, 'max_depth': 5}, mean: 0.84848, std: 0.06732, params: {'n_estimators': 49, 'max_depth': 5}, mean: 0.85354, std: 0.06826, params: {'n_estimators': 50, 'max_depth': 5}, mean: 0.84848, std: 0.06566, params: {'n_estimators': 51, 'max_depth': 5}, mean: 0.84343, std: 0.07716, params: {'n_estimators': 52, 'max_depth': 5}, mean: 0.84343, std: 0.07716, params: {'n_estimators': 53, 'max_depth': 5}, mean: 0.85354, std: 0.08087, params: {'n_estimators': 54, 'max_depth': 5}, mean: 0.84848, std: 0.06717, params: {'n_estimators': 55, 'max_depth': 5}, mean: 0.85859, std: 0.07056, params: {'n_estimators': 56, 'max_depth': 5}, mean: 0.84343, std: 0.07716, params: {'n_estimators': 57, 'max_depth': 5}, mean: 0.85859, std: 0.07069, params: {'n_estimators': 58, 'max_depth': 5}, mean: 0.84343, std: 0.07583, params: {'n_estimators': 59, 'max_depth': 5}]
############# based on standard predict ################
Accuracy on training data: 0.94
Accuracy on test data:     0.78
[[61 21]
 [ 8 43]]
########################################################
/Users/alpkaancelik/anaconda/lib/python2.7/site-packages/IPython/kernel/__main__.py:22: FutureWarning: comparison to `None` will result in an elementwise object comparison in the future.

In [138]:
ax1=make_roc("log", clflog2, ytest, Xtest, labe=10, proba=False)
ax1=make_roc("svm", clfsvm2, ytest, Xtest, labe=10, proba=False)
ax1=make_roc("AdaBoost", clfAda2, ytest, Xtest, labe=10, proba=False)
ax1=make_roc("GB", clfGB2, ytest, Xtest, labe=10, proba=False)



In [139]:
from sklearn.tree import DecisionTreeClassifier
import sklearn.linear_model
import sklearn.svm

def plot_decision_surface(clf, X_train, Y_train):
    plot_step=0.1
    
    if X_train.shape[1] != 2:
        raise ValueError("X_train should have exactly 2 columnns!")
    
    x_min, x_max = X_train[:, 0].min() - plot_step, X_train[:, 0].max() + plot_step
    y_min, y_max = X_train[:, 1].min() - plot_step, X_train[:, 1].max() + plot_step
    xx, yy = np.meshgrid(np.arange(x_min, x_max, plot_step),
                         np.arange(y_min, y_max, plot_step))

    clf.fit(X_train,Y_train)
    if hasattr(clf, 'predict_proba'):
        Z = clf.predict_proba(np.c_[xx.ravel(), yy.ravel()])[:,1]
    else:
        Z = clf.predict(np.c_[xx.ravel(), yy.ravel()])    
    Z = Z.reshape(xx.shape)
    cs = plt.contourf(xx, yy, Z, cmap=plt.cm.Reds)
    plt.scatter(X_train[:,0],X_train[:,1],c=Y_train,cmap=plt.cm.Paired)
    plt.show()
    
# your code here
imp_cols = clfforest2.feature_importances_.argsort()[::-1][0:2]

This cell of code broke my kernel!


In [ ]:
X_imp = dftouse[imp_cols].values

for i in X_imp:
    for p in i:
        i[p] = int(i[p])

Y = dftouse.adj_opening_gross_bin.values
name_list = dftouse.columns

classifiers = [clfTree2,
               clfForest,
               clfAda,
               clfGB,
               sklearn.svm.SVC(C=100.0, gamma=1.0)]

titleClassifer = ['Decision Tree Classifier', 'Random Forest Classifier', 
                  'AdaBoost Classifier', 'Gradient Boosting Classifier', 'Support Vector Machine']
for c in xrange(5):
    plt.title(titleClassifer[c])
    plt.xlabel(name_list[0])
    plt.ylabel(name_list[1])
    plot_decision_surface(classifiers[c], X_imp, dftouse.adj_opening_gross_bin.values)

Conclude analysis and introduce next Phase of Project

At the end of our analysis, we reached the following conclusions:

  • We were unable to realize any significant relationship between our variables of interest (viewer sentiment and box office success).
  • Hence, we should collect more data by scraping from more sources, since we had less than 400 data points for the analyses above. We hope that having more data will help to see the relationships more clearly
  • Moreover, we should think about other methods we can employ to analyze our data, since our current methods might not be the best ways to think about our problem

We are going to talk about these in more detail in the beginning of our final report.